/* ===== General Styles ===== */
.login-wrapper {
    display: flex;
    flex-wrap: wrap;
    min-height: 100vh;
}

.login-left {
    background: linear-gradient(135deg, #5e87f5, #6300cd);
    color: white;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px;
}




.login-left h1 {
    font-size: 2.2rem;
    font-weight: bold;
}

.login-left p {
    margin-top: 15px;
    font-size: 1rem;
}

.login-right {
    flex: 1;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
}

.login-card {
    width: 100%;
    max-width: 400px;
}

.login-card .form-control {
    padding-left: 40px;
}

.input-icon {
    position: absolute;
    top: 20px;
    left: 12px;
    transform: translateY(-50%);
    color: #aaa;
}

.toggle-password {
    position: absolute;
    top: 50%;
    right: 12px;
    transform: translateY(-50%);
    cursor: pointer;
    color: #aaa;
}

.social-login button {
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    margin: 0 5px;
    background: #f5f5f5;
}

@media (max-width: 768px) {
    .login-left {
        display: none;
    }
    .login-right {
        flex: 1 1 100%;
    }
}

.invalid-feedback {
    display: none;
    width: 100%;
    margin-top: 0.25rem;
    font-size: 0.875em;
    color: #dc3545;
}

 /* Animations */
        .slideInDown {
            animation: slideInDown 0.8s ease-in-out both;
        }

        .slideInUp {
            animation: slideInUp 0.8s ease-in-out both;
        }
        .fadeInUp {
            animation: fadeInUp 0.6s ease-in-out both;
        }



        @keyframes slideInDown {
            from {
                opacity: 0;
                transform: translateY(-50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes slideInUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

