body {
    width: 100%;
    height: 100%;
}
.all {
    width: 100%;
    height: 100%;
    display: flex;
}
.gauche {
    width: 60%;
}
h1 {
    font-size: 50px;
    font-weight: 700;
    margin: 150px;
    color: #3275CD;
}
.droite {
    width: 40%;
    height: 100%;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}
.fake {
    width: 300px;
}
input {
    width: 100%;
    margin: 15px;
    padding: 15px;
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 22px;
    box-sizing: border-box;
    border: none;
    border-radius: 15px;
    background-color: #8585857e;
    
}
.switch-container {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap; /* au cas où sur petit écran */
    margin-top: 15px;
    margin-bottom: 15px;
}

.text-conditions {
    font-size: 0.9em;
    color: #333;
    max-width: 80%; /* ou 100% si tu veux forcer le retour à la ligne mieux */
}

.switch {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 20px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0; left: 0;
    right: 0; bottom: 0;
    background-color: #ccc;
    transition: 0.4s;
    border-radius: 20px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 16px; width: 16px;
    left: 2px; bottom: 2px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
}

.switch input:checked + .slider {
    background-color: #3275CD;
}

.switch input:checked + .slider:before {
    transform: translateX(20px);
}
