/* RESET DE BASE */
body.reset-body {
    background: #f5f7fa;
    font-family: "Segoe UI", Tahoma, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

/* CONTENEUR PRINCIPAL */
.reset-container {
    width: 380px;
    background: #fff;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.1);
    text-align: center;
}

/* LOGO */
.reset-logo img {
    max-width: 150px;
    margin-bottom: 15px;
}

/* TITRE */
.reset-title {
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 600;
    color: #333;
}

/* MESSAGE D'ERREUR */
.reset-error {
    background: #ffe5e5;
    color: #c00;
    border: 1px solid #f2bcbc;
    padding: 10px;
    border-radius: 6px;
    margin-bottom: 15px;
}

/* FORMULAIRE */
.reset-label {
    display: block;
    text-align: left;
    margin-bottom: 6px;
    font-weight: 500;
    color: #444;
}

.reset-input {
    width: 100%;
    padding: 10px;
    border-radius: 6px;
    border: 1px solid #ccc;
    margin-bottom: 15px;
    font-size: 16px;
}

.reset-input:focus {
    border-color: #005eff;
    outline: none;
}

/* BOUTON */
.reset-btn {
    width: 100%;
    padding: 12px;
    background: #005eff;
    border: none;
    border-radius: 6px;
    color: white;
    font-size: 16px;
    cursor: pointer;
    transition: 0.2s;
}

.reset-btn:hover {
    background: #0047cc;
}

/* LIEN RETOUR */
.reset-back {
    margin-top: 15px;
}

.reset-back a {
    color: #005eff;
    text-decoration: none;
    font-size: 14px;
}

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