/* Reset password page specific styles (moved from reset-password.html) */

.container {
    max-width: 450px;
    width: 90%;
    margin: 40px auto;
    background: var(--bg-panel);
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    overflow: hidden;
    padding: 30px;
}

h1 {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border);
}

p {
    color: var(--text-light);
    margin-bottom: 25px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.password-requirements {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-top: 8px;
    padding-left: 15px;
}

.password-requirements li {
    margin-bottom: 4px;
}

.links {
    text-align: center;
    margin-top: 25px;
}

.links a {
    color: var(--accent);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.links a:hover {
    text-decoration: underline;
}
