@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    width: 100%;
    background-color: #071582e3;
    display: flex;
    justify-content: center;
    align-items: center;
}

.registration-container {
    background: #fff;
    border-radius: 0.5rem;
    padding: 1rem;
    margin: 1rem;
}

.registration-container h2 {
    font-weight: bold;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    position: relative;
}



.registration-container h2::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    height: 3px;
    width: 100%;
    border-radius: 2px;
    background-color: #efc75e;
}

.three-details-item {
    display: flex;
    flex-wrap: wrap;
}

hr {
    width: 100%;
    height: 1px;
    background-color: #efc75e;
    margin: 1rem 0;
    border: none;
}

.personal-details,
.identity-details {
    margin: .2rem 0;
}


/*debut condition section*/
.conditions-details {
    margin: .2rem 0;
    font-size: .9rem;
}


/* Fin condition section*/


.personal-details label,
.identity-details label {
    margin: .5rem 1rem;
    font-size: .9rem;
    font-weight: 600;
}

.three-details-item input {
    outline: none;
    font-size: .8rem;
    border-radius: .2rem;
    border: 1px solid rgb(113, 101, 101);
    padding: .1rem;
    background-color: transparent;
}

.three-details-item textarea {

    height: 200px;
    width: 100%;
}

.submit-btn {
    border: none;
    background-color: #efc75e;
    color: white;
    padding: .3rem .5rem;
    display: block;
    width: 45%;
    margin: .5rem auto;
    border-radius: .3rem;
    font-size: 1.8rem;
    font-weight: bolder;

}

.title {
    height: 80px;
    background: #efc75e;
    border-radius: 5px 5px 0 0;
    color: #fff;
    font-size: 35px;
    font-weight: bolder;
    display: flex;
    align-items: center;
    justify-content: center;
}