form {
    border-radius: 8px;
    border: 1px solid var(--light-grey);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 32px;
    width: 420px;
    background-color: var(--white);
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.06);
}

form h1 {
    text-align: center;
    font-weight: 600;
}

form input {
    height: 38px;
    padding: 0 12px;
    border: 1px solid var(--medium-grey) !important;
    border-radius: 4px !important;
    color: var(--very-dark-grey) !important;
    font-size: 16px;
    margin-bottom: 16px;
}

form input::placeholder {
    color: var(--very-dark-grey) !important;
}

form label {
    font-weight: 600 !important;
    margin-bottom: 8px;
}

form label::after {
    content: ' ';
    display: inline-block;
    width: 4px;
    height: 4px;
    border-radius: 100%;
    background-color: var(--color-primary);
    margin-bottom: 12px;
    margin-left: 5px;
}

form button[type="submit"] {
    width: 100%;
    color: white;
    background-color:var(--color-primary);
    border: none;
    font-weight: 600;
    padding: 8px 12px;
    border-radius: 4px;
}

form button[type="submit"]:hover {
    background-color: var(--color-secondary);
}

.btn-cgu {
    background-color: white; !important;
    border: 1px solid black !important;
}

@media only screen and (max-width: 720px){
    form {
        padding: 16px;
        gap: 24px;
        width:90%;
    }

}

.password-eye {
    position: absolute;
    right: 10px;
    top: 15%;
    cursor: pointer;
    font-size: 24px;
}
