.login-body {
    background: linear-gradient(135deg, #f6e7dd, #fbeee7);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    font-family: "Segoe UI", sans-serif;
    color: #5A3A28;
}

.login-container {
    background: #ffffff;
    padding: 40px 35px;
    border-radius: 22px;
    box-shadow: 0 8px 24px rgba(80, 50, 30, 0.20);
    width: 350px;
    text-align: center;
    animation: aparecer 0.35s ease-out;
}

@keyframes aparecer {
    from { opacity: 0; transform: scale(0.96); }
    to { opacity: 1; transform: scale(1); }
}

.login-title {
    margin: 0;
    font-size: 28px;
    font-weight: 700;
    color: #C25F46;
}

.login-subtitle {
    margin-top: 4px;
    font-size: 14px;
    color: #7A6456;
    margin-bottom: 30px;
}

.login-form input {
    width: 100%;
    padding: 12px 14px;
    margin-bottom: 16px;
    font-size: 15px;
    border-radius: 12px;
    border: 1px solid #D5C1B2;
    background: #FFF;
    transition: all 0.25s ease;
}

.login-form input:focus {
    border-color: #C25F46;
    box-shadow: 0 0 0 3px rgba(194, 95, 70, 0.20);
    outline: none;
}

.login-btn {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, #C25F46, #D98C5F);
    border: none;
    color: white;
    font-size: 16px;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 600;
    transition: 0.25s ease;
}

.login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(194, 95, 70, 0.35);
}

.login-message {
    margin-top: 15px;
    color: #D9534F;
    font-size: 14px;
    font-weight: 600;
}
