body {
    background: #f5f5f9;
    font-family: 'Inter', 'Segoe UI', sans-serif;
}

.login-main {
    min-height: calc(100vh - var(--footer-height));
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.split-login {
    display: flex;
    max-width: 820px;
    width: 100%;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
}

.split-info {
    flex: 1;
    padding: 3rem;
    background: #ffffff;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.split-logo {
    height: 253px;
    margin-bottom: 1rem;
}

.split-subtitle {
    display: block;
    margin-bottom: 1.5rem;
    color: #5f6775;
    letter-spacing: 0.1em;
    font-size: 1.25rem;
}

.split-info p {
    color: #6e7285;
}

.split-form {
    flex: 1;
    background: #8A5A10;
    padding: 3rem;
    color: #e5f5da;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-form form {
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
}

.split-form label {
    font-size: 1.2rem;
    margin-bottom: 0.35rem;
    color: #ffffff;
}

.split-form input {
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0.4rem 0;
    color: #fff;
}

.password-field {
    position: relative;
    display: flex;
    align-items: center;
}

.password-field input {
    flex: 1;
    padding-right: 2.5rem;
}

.password-toggle {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
}

.password-toggle:focus {
    outline: none;
}

.split-gradient-line {
    height: 4px;
    background: linear-gradient(90deg, #FFFFFF, #441A09);
}

.split-form button {
    background: transparent;
    border: none;
    color: rgba(229, 245, 218, 0.85);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    padding: 0.8rem 0;
    border-radius: 999px;
    transition: background 0.3s ease, color 0.3s ease;
}

.split-form button:hover {
    background: linear-gradient(120deg, #FFFFFF, #441A09);
    color: #ffffff;
}

@media (max-width: 768px) {
    .split-login {
        flex-direction: column;
    }
}