﻿body {
    margin: 0;
    padding: 0;
    height: 100vh;
    overflow: hidden;
}

.login-container {
    display: flex;
    height: 100vh;
    width: 100vw;
}

/* Left Side - Dark */
.login-sidebar {
    background-color: var(--secondary-color);
    width: 50%;
    color: white;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.login-sidebar h2 {
    color: white;
    font-size: 3rem;
    line-height: 1.2;
    font-weight: 700;
}

.login-sidebar p {
    color: #98A2B3;
    /* Lighter gray for dark bg */
    font-size: 1.1rem;
    max-width: 80%;
}

.check-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.check-item .material-icons-round {
    color: var(--primary-color);
    margin-right: 1rem;
}

.brand img {
    height: 40px;
}

.footer-login {
    color: #667085;
}

/* Right Side - Light */
.login-form-side {
    width: 50%;
    background-color: var(--bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
    margin-left: -20px;
    /* Slight overlap effect */
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.login-card {
    width: 100%;
    max-width: 450px;
    padding: 2rem;
}

.login-card h3 {
    font-size: 2rem;
    color: #101828;
    margin-bottom: 0.5rem;
}

.form-label {
    color: #344054;
    font-weight: 500;
}

.form-control-login {
    border: 1px solid #D0D5DD;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
}

.form-control-login:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(0, 230, 118, 0.1);
}

/* Responsive */
@media (max-width: 992px) {
    .login-container {
        flex-direction: column;
    }

    .login-sidebar {
        width: 100%;
        height: 30%;
        padding: 2rem;
    }

    .login-form-side {
        width: 100%;
        height: 70%;
        border-radius: 30px 30px 0 0;
        margin-left: 0;
        margin-top: -20px;
    }

    .login-sidebar h2 {
        font-size: 2rem;
    }

    .check-item {
        display: none;
    }

    .hero-text p {
        display: none;
    }
}