/********************************** FORMS **************************************************/
.my_footer_for_form {
    display: flex;
    justify-content: flex-end;
}

/* Buttons */
.footer_form_button {
 margin-left: 0.5rem;
}

/* **************************ACTIVATION ACCOUNT *************************************************************** */
.container_register_form {
    position: relative;
    max-width: 600px;
    margin: auto;
    height: 100%;
}

/* (A) CONTENT BOX */
#data_registration_input {
    /* (A1) BACKGROUND IMAGE */
    background-size: cover;

    /* (A2) DIMENSIONS */
    width: 100%;
    height: 500px; /* FIXED SIZE REQUIRED */

    /* (A3) CSS TRANSITION */
    /* transition: 0.5s; */
}

/* (B) HIDE */
#data_registration_input.hide {
    height: 0;
    opacity: 0;
    overflow: hidden;
}