:root {
    --primary: #d4a373;
    --glass: rgba(255, 255, 255, 0.7);
    --shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
    --radius: 16px;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}
body {
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
}
.glass-card {
    background: var(--glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 2.5rem;
    width: 100%;
    max-width: 420px;
    transition: transform 0.3s;
}
h1 {
    color: var(--primary);
    margin-bottom: 0.3rem;
    font-size: 2rem;
    text-align: center;
}
.subtitle {
    text-align: center;
    color: #888;
    margin-bottom: 2rem;
    font-size: 0.9rem;
}
.form-group {
    margin-bottom: 1.3rem;
}
label {
    display: block;
    margin-bottom: 0.4rem;
    font-size: 0.85rem;
    font-weight: 600;
}
input {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.5);
    outline: none;
    transition: all 0.3s;
}
input:focus {
    border-color: var(--primary);
    background: white;
    box-shadow: 0 0 0 3px rgba(212, 163, 115, 0.2);
}
.btn {
    width: 100%;
    padding: 0.9rem;
    border: none;
    border-radius: 8px;
    background: var(--primary);
    color: white;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 0.5rem;
    font-size: 1rem;
}
.btn:hover {
    background: #bc8a5f;
    box-shadow: 0 4px 15px rgba(212, 163, 115, 0.4);
}
.footer-links {
    margin-top: 1.5rem;
    text-align: center;
    font-size: 0.85rem;
}
.footer-links a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}
.alert {
    padding: 0.75rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    text-align: center;
}
.alert-error {
    background: #ff7675;
    color: white;
}
.alert-success {
    background: #55efc4;
    color: #2d3436;
}