html {
    overflow-y: scroll;
}

.auth-container { 
    max-width: 400px; 
    margin: 50px auto; 
    padding: 30px; 
    background: #fff; 
    border: 1px solid #ccc; 
    border-radius: 12px; 
}
.auth-container h1 { 
    text-align: center; 
    font-size: 1.5em; 
    margin-bottom: 20px; 
}
.form-group { 
    margin-bottom: 15px; 
}
.form-group label { 
    display: block; 
    margin-bottom: 5px; 
    font-weight: 500; 
}
.form-group input { 
    width: 100%; 
    padding: 10px; 
    border-radius: 8px; 
    border: 1px solid #ccc; 
    box-sizing: border-box; 
}
.form-group .form-errors { 
    color: #d93025; 
    font-size: 0.85em; 
    margin-top: 5px; 
}
.auth-btn {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: 1.2px solid #e0e0e0;
    background: #fff;
    color: #222;
    font-size: 1.1em;
    cursor: pointer;
    font-weight: 500;
    transition: background 0.18s, border-color 0.18s, color 0.18s;
}
.auth-btn:hover {
    background: #f5f5f5;
    border-color: #bdbdbd;
    color: #111;
}
.auth-switch { 
    text-align: center; 
    margin-top: 15px; 
}
.auth-grey-text { 
    color: #888; 
}
.auth-bw-link { 
    color: #111 !important; 
    text-decoration: underline; 
    filter: grayscale(1); 
    transition: filter 0.2s; 
}
.auth-bw-link:hover { 
    filter: none; 
    color: #000 !important; 
}

/* Messages styling */
.messages {
    margin-bottom: 20px;
}
.message {
    padding: 12px 16px;
    margin-bottom: 10px;
    border-radius: 8px;
    font-size: 0.95em;
}
.message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}
.message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}
.message.info {
    background-color: #d1ecf1;
    color: #0c5460;
    border: 1px solid #bee5eb;
}
.message.warning {
    background-color: #fff3cd;
    color: #856404;
    border: 1px solid #ffeaa7;
}

/* Description text */
.reset-description {
    color: #666;
    font-size: 0.95em;
    line-height: 1.5;
    margin-bottom: 20px;
    text-align: center;
}
