
body {
    min-height: 100vh;
    display: flex;
    overflow: hidden;
}

.split-left {
    width: 40%;
    background: #FAF7F2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 60px;
    position: relative;
    overflow: hidden;
}

.split-right {
    width: 60%;
    background: #F5F1EB;
    background-image: url('../images/auth-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px;
    position: relative;
}

.split-right::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
}

.login-card {
    background: #FFF;
    border: 1px solid #E8E3DC;
    border-radius: 0;
    padding: 48px;
    width: 100%;
    max-width: 480px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.logo-container {
    margin-bottom: 40px;
}

.logo-container img {
    max-width: 300px;
    height: auto;
}

.login-form h3 {
    font-size: 32px;
    font-weight: 700;
    color: #2C2C2C;
    margin-bottom: 8px;
}

.login-form h6 {
    font-size: 16px;
    color: #6B6B6B;
    margin-bottom: 32px;
    font-weight: 400;
}

.login-form .forgot-password {
    font-size: 14px;
    margin-bottom: 16px;
    font-weight: 500;
}

.form-group {
    position: relative;
    margin-bottom: 24px;
}

.input-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.input-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0.6;
    display: block;
}

.form-control {
    width: 100%;
    padding: 18px 16px 18px 48px;
    border: 2px solid #E8E3DC;
    border-radius: 0;
    font-size: 15px;
    transition: all 0.3s ease;
    background: #fff;
    color: #2C2C2C;
    min-height: 56px;
}

.form-control::placeholder {
    color: #9A9A9A;
}

.form-control:focus {
    outline: none;
    border-color: #32B235;
    box-shadow: 0 0 0 3px rgba(50, 178, 53, 0.1);
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background: #32B235;
    color: white;
    border: none;
    border-radius: 0;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-submit:hover {
    background: #298E29;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(50, 178, 53, 0.3);
}

.register-link {
    text-align: center;
    margin-top: 24px;
    color: #6B6B6B;
    font-size: 14px;
}

.register-link a {
    color: #32B235;
    text-decoration: none;
    font-weight: 600;
}

.register-link a:hover {
    color: #298E29;
}

.right-content {
    position: relative;
    z-index: 10;
    color: #FFF;
}

.right-content h2 {
    font-size: 56px;
    font-weight: 200;
    line-height: 1.3;
    margin-bottom: 24px;
}

.right-content h2 span {
    font-weight: 700;
    color: #32B235;
}

.right-content p {
    font-size: 18px;
    line-height: 2;
    color: #BBB;
    max-width: 90%;
    margin-bottom: 4rem;
}

.right-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
    max-width: 90%;
}

.right-content ul li {
    font-size: 16px;
    line-height: 1.8;
    color: #BBB;
    margin-bottom: 16px;
    padding-left: 28px;
    position: relative;
}

.right-content ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #32B235;
    font-weight: 700;
    font-size: 18px;
}

.footer-info {
    z-index: 10;
    position: absolute;
    bottom: 30px;
    left: 60px;
    right: 60px;
    display: flex;
    justify-content: space-between;
    color: #888;
    font-size: 14px;
    font-weight: 400;
}

.footer-info a {
    color: #888;
    text-decoration: none;
}

.quick-login {
    padding: 10px;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid #E8E3DC !important;
    background: #F5F1EB;
    color: #2C2C2C;
}

.quick-login:hover {
    background: #32B235;
    color: white;
    border-color: #32B235 !important;
    transform: translateY(-2px);
}

@media (max-width: 968px) {
    body {
        flex-direction: column;
    }

    .split-left, .split-right {
        width: 100%;
    }

    .split-right {
        min-height: 40vh;
    }

    .right-content h2 {
        font-size: 36px;
    }
}