.login-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.auth-card.login-card {
    max-width: 900px;
    border-radius: 4px;
    /* Matches the sharper corners in the image */
}

.login-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    /* Gap handled by padding */
}

.login-left {
    flex: 1.2;
    min-width: 300px;
    padding: 30px;
}

.login-right {
    flex: 1;
    min-width: 300px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.login-card-header {
    margin-bottom: 25px;
}

.login-card-header h2 {
    color: #006837;
    /* Dark green for 'Existing User' */
    font-size: 24px;
    font-weight: 700;
    text-transform: none;
    margin: 0;
}

.auth-form .form-label {
    font-weight: 700;
    color: #333;
}

.forgot-password {
    text-align: right;
    margin-top: 5px;
    margin-bottom: 20px;
}

.forgot-password a {
    color: #650000;
    font-size: 14px;
    text-decoration: none;
}

.btn-signin {
    padding: 10px 40px;
    background-color: #31338a;
    /* Dark blue from image */
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-signin:hover {
    background-color: #25276b;
    color: #ffffff;
}

.social-login-container {
    padding-left: 20px;
}

.social-login-title {
    text-align: center;
    font-size: 14px;
    color: #333;
    margin-bottom: 15px;
    padding-right: 20px;
    font-weight: 600;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 14px;
    border-radius: 6px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 15px;
    gap: 20px;
    font-size: 16px;
}

.social-btn.otp {
    background-color: #0088cc;
}

.social-btn.google {
    background-color: #d14836;
}

.social-btn.facebook {
    background-color: #3b5998;
}

.social-btn i {
    font-size: 20px;
}
.social-btn:hover{
    color: #c4c4c4;
    text-decoration: none;
}
.login-footer {
    border-top: 1px dashed #ccc;
    margin: 20px 30px 40px;
    padding-top: 20px;
    text-align: center;
}

.create-account-text {
    font-size: 16px;
    color: #333;
}

.create-account-link {
    color: #333;
    text-decoration: none;
    font-weight: 700;
}

@media (max-width: 768px) {
    .login-grid {
        flex-direction: column;
    }

    .login-right {
        border-left: none;
        padding-top: 0;
    }

    .social-login-container {
        padding-left: 0;
    }
}
