/* Style global identique à ton app */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #e5ddd5; /* Fond gris clair WhatsApp */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.reset-container {
    width: 90%;
    max-width: 400px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.header-reset {
    background-color: #075E54;
    color: white;
    padding: 20px;
    text-align: center;
    font-weight: bold;
    font-size: 18px;
}

.form-body {
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
}

p {
    color: #4a4a4a;
    font-size: 14px;
    text-align: center;
    margin-bottom: 25px;
    line-height: 1.4;
}

input[type="password"] {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-sizing: border-box; /* Évite que l'input dépasse */
    font-size: 16px;
    outline: none;
}

input[type="password"]:focus {
    border-color: #25D366;
}

button {
    background-color: #25D366;
    color: white;
    border: none;
    padding: 15px;
    border-radius: 8px;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
}

button:hover {
    background-color: #128C7E;
}

button:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

#status-msg {
    margin-top: 15px;
    text-align: center;
    font-size: 13px;
    font-weight: 500;
}
