.login-wrapper {
    max-width: 100%;
    margin: 0;
}

.login-grid {
    display: grid;
    grid-template-columns: 40% 60%;
    gap: 0;
    background: linear-gradient(135deg, rgba(30, 24, 18, 0.5), rgba(20, 16, 12, 0.5));
    border: 1px solid #4a3f2f;
    border-radius: 8px;
    overflow: hidden;
}

.login-side {
    padding: 30px 20px;
    background: linear-gradient(135deg, rgba(30, 24, 18, 0.8), rgba(20, 16, 12, 0.8));
    border-right: 1px solid #4a3f2f;
}

.login-side h3 {
    font-family: 'Cinzel', serif;
    font-size: 22px;
    color: #d4af37;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9);
}

.login-side p {
    color: #b8a589;
    font-size: 15px;
    margin-bottom: 20px;
}

.benefits-list {
    list-style: none;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(74, 63, 47, 0.3);
}

.benefit-item:last-child {
    border-bottom: none;
}

.benefit-icon {
    width: 28px;
    height: 28px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    flex-shrink: 0;
}

.benefit-text {
    flex: 1;
}

.benefit-title {
    font-weight: 600;
    color: #d4af37;
    font-size: 15px;
    margin-bottom: 2px;
}

.benefit-desc {
    font-size: 15px;
    color: #8b7355;
}

.login-form-area {
    padding: 30px 25px;
}

.form-header-small {
    margin-bottom: 20px;
}

.form-header-small h4 {
    font-family: 'Cinzel', serif;
    font-size: 20px;
    color: #d4af37;
    margin-bottom: 5px;
}

.form-header-small p {
    color: #c5bbaf;
    font-size: 15px;
}

.alert {
    padding: 10px 12px;
    margin-bottom: 15px;
    border-radius: 6px;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.alert-error {
    background: rgba(146, 38, 34, 0.678);
    border: 1px solid rgba(220, 90, 85, 0.4);
    color: #e89693;
}

.alert-success {
    background: rgba(106, 191, 105, 0.15);
    border: 1px solid rgba(106, 191, 105, 0.4);
    color: #8cd68b;
}

.form-group {
    margin-bottom: 15px;
}

.form-label {
    display: block;
    margin-bottom: 5px;
    color: #d4af37;
    font-size: 15px;
    font-weight: 600;
    font-family: 'Cinzel', serif;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.input-wrapper {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #8b7355;
    font-size: 13px;
}

.form-control {
    width: 100%;
    padding: 9px 10px 9px 35px;
    background: rgba(30, 24, 18, 0.5);
    border: 1px solid #4a3f2f;
    height: 40px;
    border-radius: 5px;
    color: #e8dcc4;
    font-size: 12px;
    transition: all 0.3s;
}

.form-control:focus {
    outline: none;
    border-color: #d4af37;
    background: rgba(35, 28, 21, 0.6);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
}

.form-control::placeholder {
    color: #b8a589;
    font-size: 11px;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
    font-size: 10px;
}

.checkbox-wrapper {
    display: flex;
    align-items: center;
    font-size: 15px;
    gap: 6px;
    color: #b8a589;
}

.checkbox-wrapper input[type="checkbox"] {
    width: 13px;
    height: 13px;
    cursor: pointer;
    accent-color: #d4af37;
}

.forgot-link {
    color: #c9a961;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s;
}

.forgot-link:hover {
    color: #d4af37;
}

.btn-login {
    width: 100%;
    padding: 11px;
    background: linear-gradient(135deg, #3d2f1f, #2a1f12);
    border: 2px solid #5d4a1f;
    border-radius: 5px;
    color: #d4af37;
    font-size: 13px;
    font-weight: 700;
    font-family: 'Cinzel', serif;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-login:hover {
    background: linear-gradient(135deg, #5d4a1f, #3d2f1f);
    border-color: #d4af37;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.divider {
    display: flex;
    align-items: center;
    margin: 15px 0;
    color: #6b5d4f;
    font-size: 10px;
}

.divider::before,
.divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, #4a3f2f, transparent);
}

.divider span {
    padding: 0 10px;
}

.register-link {
    text-align: center;
    color: #b8a589;
    font-size: 20px;
}

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

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

@media (max-width: 768px) {
    .login-grid {
        grid-template-columns: 1fr;
    }

    .login-form-area {
        order: 1;
    }

    .login-side {
        border-right: none;
        order: 2;
        border-bottom: 1px solid #4a3f2f;
    }
}