.bg{
    background-image: url("/assets/imgs/fond-2.jpg")!important;
    background-repeat: no-repeat;
}

header .logo > img{
    display: block!important;
}

.form-wrapper{
    background: rgba(255,255,255,.3);
    padding: 1.5rem 1rem;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / .1), 0 2px 4px -2px rgb(0 0 0 / .1);
    margin: 20px auto 2rem;
    max-width: 567px;
}

h2{
    color: white;
    font-size: 1.875rem;
    line-height: 2.25rem;
    font-family: "Miguna", sans-serif;
    font-weight: bold;
    text-align: center;
}

.btn{
    margin: 1.25rem auto;
}

.text-deco{
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    font-weight: 900;
    gap: 1rem;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}

.text-deco:before, .text-deco:after{
    content: "";
    min-width: 40px;
    min-height: 3px;
    background: white;
}

p{
    color: white;
    font-size: .875rem;
    line-height: 1.25rem;
    text-align: center;
}

form{
    margin-top: 1rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem clamp(1rem, 3vw, 2rem);
}

.fw{grid-column: 1/-1;}

.form-group label{
    display: block;
    font-size: 1rem;
    line-height: 1.25rem;
    color: white;
}

.checkbox-group label{
    color: white;
    font-size: .875rem;
    line-height: 1.25rem;
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="date"],
input[type="tel"],
select{
    appearance: none;
    background-color: #fff;
    border-radius: 0;
    padding: .5rem .75rem;
    font-size: 1rem;
    line-height: 1.5rem;
    width: 100%;
    outline: none;
    border: none;
}

input[type="checkbox"]{
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: rgb(203 213 225 / 1) 1px solid;
    border-radius: .15rem;
    min-width: 1.25rem;
    height: 1.25rem;
    background-color: #fff;
    color: #2563eb;
    user-select: none;
    padding: 0;
    print-color-adjust: exact;
    display: inline-block;
    vertical-align: middle;
    background-origin: border-box;
}

input[type="checkbox"]:checked{
    background-color: #bb3e8e;
    border: #bb3e8e 1px solid;
    background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M12.207 4.793a1 1 0 010 1.414l-5 5a1 1 0 01-1.414 0l-2-2a1 1 0 011.414-1.414L6.5 9.086l4.293-4.293a1 1 0 011.414 0z'/%3e%3c/svg%3e");
}

button.btn{
    margin: 1rem auto 0;
}

.checkbox-group {
    display: flex;
    gap: .75rem;
    align-items: center;
}

@media (max-width: 480px) {
    form{grid-template-columns: 1fr;}
}