/* Importation de la police Montserrat */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;700&display=swap');

body.reset {
    font-family: 'Montserrat', sans-serif;
    background-color: #f0f4f8;
    margin: 0;
    padding: 0;
}

.reset__container {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80vh;
    padding: 1rem;
    background-color: #f0f4f8;
}

.reset__box {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    width: 100%;
    max-width: 400px;
}

.reset__title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.reset__field {
    margin-bottom: 1rem;
}

.reset__label {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    color: #555;
}

.reset__input {
    width: 93%;
    padding: 0.75rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.reset__input:focus {
    border-color: #3498db;
    outline: none;
}

.reset__submit {
    width: 100%;
    padding: 0.75rem;
    background-color: #3498db;
    border: none;
    border-radius: 4px;
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.reset__submit:hover {
    background-color: #2980b9;
}
