body {
    background: #ffffff !important;
}

.banner {
    width: 500px;
    height: auto;
    object-fit: cover;
    /* margin-bottom: 2rem; */
}

.login-container {
    display:flex;
    width:100vw;
    height: 90vh;
    justify-content: center;
    align-items: center;
    background: #ffffff;
    color:white;
}
.logo-card {
    display: flex;
    margin-right: 80px;
    align-items: center;
    justify-content: center;
}

.brand-logo {
    width: 700px;
    object-fit: contain;
}

.login-card {
    background: #003366;
    width: 320px;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.login-card .icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.login-card h2 {
    margin: 0.5rem 0;
}

.login-card p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.login-card input[type="email"],
.login-card input[type="password"] {
    width: 100%;
    padding: 0.75rem;
    margin: 0.5rem 0;
    border: 1px solid #ccc;
    border-radius: 6px;
}

.login-card .forgot {
    text-align: right;
    display: block;
    margin: 0.5rem 0;
    font-size: 0.8rem;
    color: #ffffff;
    text-decoration: none;
}

.login-card button {
    width: 100%;
    padding: 0.75rem;
    background: #003366;
    color: white;
    border: 1px solid #ffffff;
    border-radius: 6px;
    font-size: 1rem;
    cursor: pointer;
    margin-top: 0.5rem;
     transition: background-color 0.3s ease;
}

.login-card button:hover{
    background: #08192f;
}

.login-card .or {
    margin: 1rem 0;
    font-size: 0.9rem;
    color: #888;
}

.copyright {
    text-align: center;
    margin-top: 2rem;
    font-size: 0.8rem;
    color: #666;
}

.social-buttons {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.social-buttons button {
    background: none;
    border: 1px solid #ccc;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    font-size: 1.2rem;
}
