body,
html {
    height: 100%;
    margin: 0;
    font-family: 'Inter', sans-serif;
}

.login-wrapper {
    display: flex;
    height: 100vh;
    width: 100%;
}

/* Left Side */
.login-left {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: white;
    padding: 40px;
    position: relative;
}

.login-form-container {
    width: 100%;
    max-width: 450px;
}

/* Right Side */
.login-right {
    width: 50%;
    background: linear-gradient(180deg, #0082FA 0%, #0055AA 100%);
    /* Metronic Blue-ish */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Responsive */
@media (max-width: 992px) {
    .login-right {
        display: none;
    }

    .login-left {
        width: 100%;
    }
}

/* Form Elements */
.form-control {
    background-color: #ffffff;
    border: 1px solid #E1E3EA;
    border-radius: 6px;
    padding: 0.75rem 1rem;
    /* Reduced height */
    font-weight: 500;
    color: #3F4254;
    transition: all 0.2s;
}

.form-control:focus {
    background-color: #ffffff;
    border-color: #1B84FF;
    /* Active Blue */
    box-shadow: none;
    color: #3F4254;
}

.form-control::placeholder {
    color: #A1A5B7;
}

.btn-primary {
    background-color: #1B84FF;
    border-color: #1B84FF;
    padding: 10px;
    /* Reduced button height */
    font-weight: 600;
    border-radius: 6px;
    font-size: 1rem;
}

.btn-primary:hover {
    background-color: #056EE9;
    border-color: #056EE9;
}

.social-btn {
    border: 1px solid #E1E3EA;
    background: white;
    color: #7E8299;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 10px;
    /* Reduced height */
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.2s;
}

.social-btn:hover {
    background: #f9f9f9;
    border-color: #cdd0d5;
    color: #3F4254;
}

.footer-link {
    color: #A1A5B7;
    text-decoration: none;
    margin: 0 10px;
    font-size: 0.85rem;
}

.footer-link:hover {
    color: #0082FA;
}

.promo-img {
    max-width: 50%;
    border-radius: 12px;
    margin-bottom: 40px;
}

/* Mobile Header */
.mobile-header {
    display: none;
}

@media (max-width: 992px) {
    .mobile-header {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
        padding: 40px 20px;
        background: linear-gradient(180deg, #0082FA 0%, #0055AA 100%);
        color: white;
        margin-bottom: 20px;
    }

    .login-left {
        width: 100%;
        justify-content: flex-start;
        padding: 0;
    }

    .login-form-container {
        padding: 20px;
    }

    /* Reset footer position on mobile to flow naturally */
    .login-left>.position-absolute {
        position: relative !important;
        margin-top: auto;
        padding-bottom: 30px;
    }
}
