.readonly {
    background-color: #f0f0f0;
    color: #555;
    cursor: not-allowed;
}
body {
    background: linear-gradient(to right, #A18CD1, #FBC2EB);
    font-family: system-ui, sans-serif;
    margin: 0;
    padding: 30px 0px;
}
h2 {
    text-align: center;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

form {
    max-width: 500px;
    margin: auto;
    padding: 2rem;
    background: #fff;
    border-radius: 0.5rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}

form p {
    margin-bottom: 1rem;
}

form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

form input,
form select,
form textarea {
    display: block;
    width: 100%;
    padding: 0.5rem 0.75rem;
    font-size: 1rem;
    color: #212529;
    background-color: #fff;
    border: 1px solid #ced4da;
    border-radius: 0.375rem;
}

form input:focus,
form select:focus,
form textarea:focus {
    outline: none;
    border-color: #86b7fe;
    box-shadow: 0 0 0 0.2rem rgba(13,110,253,.25);
}

button[type="submit"] {
    width: 100%;
    padding: 0.5rem;
    font-size: 1rem;
    color: #fff;
    background-color: #0d6efd;
    border: none;
    border-radius: 0.375rem;
    cursor: pointer;
}

button[type="submit"]:hover {
    background-color: #0b5ed7;
}

/** page mail de vérification **/
#mailVerifBody {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
.mailVerification {
    max-width: 600px;
    width: 90%;
    background: #ffffff;
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    text-align: center;
}

.mailVerification h2 {
    margin-bottom: 1.5rem;
}

.mailVerification p {
    margin-bottom: 1rem;
    font-size: 1rem;
    color: #212529;
}

.mailVerification a {
    color: #0d6efd;
    text-decoration: none;
}

.mailVerification a:hover {
    text-decoration: underline;
}

/** page ajout d'enfant **/
.marginTop{
    margin-top: 15px;
}
/** espace employe **/
#btnDashEmploye {
    display: inline-block;
    background-color: #0d6efd;
    color: white;
    padding: 0.7rem 1.4rem;
    margin: 1rem auto;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 500;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease, transform 0.2s ease;
    text-align: center;
}

#btnDashEmploye:hover {
    background-color: #0b5ed7;
    transform: translateY(-2px);
}

p a#btnDashEmploye {
    display: inline-block;
}
