.login-box {
    max-width: 380px;
    margin: 60px auto;
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.login-box h2 {
    margin-top: 0;
    color: #53392d;
    text-align: center;
}

.login-box form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 16px;
}

.login-box input {
    padding: 10px 12px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 15px;
}

.login-box input:focus {
    outline: none;
    border-color: #c66446;
}

.login-box button {
    background: #c66446;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.login-box button:hover {
    background: #a44d34;
}

.login-box p {
    text-align: center;
    margin-top: 16px;
    font-size: 14px;
}

.login-box a {
    color: #c66446;
    font-weight: 600;
    text-decoration: none;
}

.alert {
    padding: 10px;
    border-radius: 6px;
    margin-bottom: 12px;
    display: none;
    font-size: 14px;
}

.alert-error {
    background: #fde2e2;
    color: #a02929;
    border: 1px solid #f5b5b5;
}

.alert-success {
    background: #e2f5e2;
    color: #2a7a2a;
    border: 1px solid #b5e5b5;
}
