/* Gere le design de la page response */


.pb_uuid {
    margin: 0;
    padding: 0;
    font-family: 'Quicksand', sans-serif;
    background-color: #ffffff;
    color: var(--ialla_black_midle);;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    min-height: 100vh;
    text-align: center;
}


.title_response {
    font-size: 3em;
    margin-bottom: 20px;
    font-weight: 600;
}


.texte_response {
    font-size: 1.2em;
    margin-bottom: 30px;
}


.cta_response {
    text-decoration: none;
    background-color: var(--ialla_black_midle);
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.cta_response:hover {
    background-color: var(--ialla_yellow) !important;
    color: var(--ialla_black_midle) !important;
}