p {
    font-size: large;
    font-weight: 550;
}

.img-container {
    position: relative ;
    overflow: hidden;
    cursor: text;
}

.image {
    transition: .5s ease;
    width: 100%;
    height: auto;
    max-width: 100%;
}

.overlay {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #44403c; /* Couleur grise du fond */
    color: white; /* Couleur du texte */
    padding: 20px; /* Ajoutez un espace intérieur au besoin */
    transform: translateY(0);
    transition: transform 0.3s;
}

.img-container:hover .overlay {
    transform: translateY(-100%);
}

.card {
    height: 450px;
}

.bottom-paragraph-card {
    position: absolute;
    bottom: -2rem;
    right: 1rem;
    margin-left: 20px;
    margin-bottom: 25px; 
    opacity: 0.8;
}

.bottom-paragraph-card p {
    padding: 5px 10px;
    background-color: #92400e;
    color: white;
    border-radius: 50%;
}

.container-registration {
    display: flex; 
    justify-content: space-between; 
    align-items: center;
}

.registration-text {
    margin-right: 100px;
}

.registration-text h1 {
    width: 350px;
}

.registration-form {
    /* flex: 1 ; */
    margin-top: 20px;
}


input[type=text], input[type="email"] {
    width: 100%;
    padding: 12px 20px;
    margin: 8px 0;
    display: inline-block;
    border: 1px solid black;
    border-radius: 4px;
    box-sizing: border-box;
}

 /* Style pour les radio buttons */
 input[type="radio"] {
    width: 20px;
    height: 20px;
    margin-right: 5px; /* Ajuster la marge selon vos préférences */
    transition: background-color 0.3s ease;
    vertical-align: middle;
}

/* Style pour les labels */
label {
    cursor: pointer; /* Permet de pointer au survol du label */
    vertical-align: middle;
}

/* Style pour le fond au clique */
input[type="radio"]:checked {
    background-color: #ddd; /* Changer la couleur de fond au clique */
}

input[type="checkbox"] {
    width: 25px;
    height: 25px;
    vertical-align: middle;
}

