/* ================================
   RESET PASSWORD – DARK THEME
================================ */


.reset-container {
    max-width: 450px;
    margin: 60px auto;
    padding: 30px;
    background: #1f1f25;
    border-radius: 12px;
    box-shadow: 0 0 15px rgba(0,0,0,0.4);
    color: #eaeaea;
}

.reset-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #ffffff;
    text-align: center;
    margin-bottom: 10px;
}

.reset-subtitle {
    color: #b5b5b5;
    text-align: center;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.reset-form label {
    font-size: 0.95rem;
    margin-bottom: 5px;
    color: #cccccc;
}

.reset-form input {
    background: #2a2a32;
    border: 1px solid #3b3b48;
    color: #eaeaea;
    padding: 10px;
    border-radius: 8px;
    width: 100%;
}

.reset-form input:focus {
    border-color: #6f8af6;
    outline: none;
}

.reset-btn {
    width: 100%;
    background: #6f8af6;
    color: white;
    padding: 10px;
    margin-top: 20px;
    border-radius: 8px;
    border: none;
    font-size: 1rem;
    transition: 0.2s ease;
}

.reset-btn:hover {
    background: #5973e4;
}

.reset-link {
    text-align: center;
    margin-top: 25px;
    color: #7f8cff;
    font-size: 0.9rem;
}

.reset-link a {
    color: #7f8cff;
    text-decoration: none;
}

.reset-link a:hover {
    text-decoration: underline;
}


body{
    background-image: url("/static/images/gym.png");
}

@media (max-width: 576px) {
    .reset-container {
        margin: 40px 1rem;   /* spazio laterale */
        padding: 24px;       /* leggermente più compatto */
    }
}
