html {
    background-color: var(--black-background);
    background-image: url("https://res.cloudinary.com/dkijx3dox/image/upload/v1725845631/background_general_yjscf7.png");
    background-size:cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.register {
    display: grid;
    align-items: center;
    justify-content: center;

    width: 100%;
    margin-bottom: 2em;
}

.register__form {
    display: grid;
    justify-content: center;
    align-items: center;

    padding: 3em;
    border: .5px solid var(--green-principal);
    border-radius: 4px;
    background-color: var(--background-box);
    width: 30vw;
}

.input {
    min-width: 30vw;
    width: 30vw;
}

.register__form summary {
    font-weight: bold;
    padding: 3px;
    padding-bottom: 10px;
    border-bottom: 3px solid var(--black-background);
    color: var(--text-principal);
    margin-bottom: 1em;
}

.register__privacity-Notice {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1.5em 0em;
    color: var(--text-principal);
    margin-bottom: 2em;
}

.checkbox {
    width: 15px;
    height: 15px;
    cursor: pointer;
    margin-right: 10px;
}

.register__buttons {
    display: grid;
    justify-content: center;
    align-items: center;
    grid-template-columns: auto 15% auto;
    text-align: center;
}

.register__privacity-Notice {
    cursor: pointer;
}

.register__privacity-Notice:hover {
    transition: 300ms;
    color: var(--green-principal);
}

#button_confirmation {
    opacity: 50%;
}

summary {
    display: flex;
    align-items: center;
}

summary img {
    width: 5%;
    visibility: hidden;
}

summary:hover {
    transition: 300ms;
    cursor: pointer;
    color: var(--green-principal);
}

@media (max-width: 800px) {
    .register__form {
        padding: .5em;
        width: 80vw;
    }

    .register__form h4 {
    text-align: center;
    }

    .register__privacity-Notice {
        margin: 1em 0em;
        margin-bottom: 2em;
    }

    .register__buttons {
        grid-template-columns: auto 5% auto;
    }

    .register__buttons button {
        font-size: .7em;
    }

    /* INPUTS */
    .input {
        font-size: .8em;
        width: 90%;
    }

}