* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}
 
body {
    background-color: #EDE7F6; /* Couleur de fond douce */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 380px;
}

h2 {
    color: #692b71;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 15px;
}

.description {
    color: #666;
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.5;
}

.btn {
    display: block;
    width: 100%;
    padding: 15px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    margin-top: 15px;
    transition: all 0.3s ease-in-out;
    border: none;
}

.primary-btn {
    background-color: #692b71;
    color: white;
}

.primary-btn:hover {
    background-color: #581e60;
}

.secondary-btn {
    background-color: white;
    color: black;
    border: 2px solid #000;
}

.secondary-btn:hover {
    background-color: #f4f4f4;
}




/* mot de passe */
input {
    width: 100%;
    padding: 12px;
    margin: 15px 0;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 16px;
    text-align: left;
}

input:focus {
    outline: none;
    border-color: #692b71;
    box-shadow: 0px 0px 8px rgba(105, 43, 113, 0.4);
}

.back-link {
    display: block;
    margin-top: 20px;
    color: #692b71;
    font-weight: bold;
    text-decoration: none;
    transition: color 0.3s ease;
}

.back-link:hover {
    color: #581e60;
}
