/*
|----------------------------------------------------
| Fichier css pour la page de connexion
|----------------------------------------------------
*/

html,
body,
main {
    min-height: 100vh;
}

main {
    background: black;
}

/*----------------------------------*
 | General of the page (ui)         |
 *----------------------------------*/
.ui-primary-link {
    width: 100%;
    text-align: center;
}

/*----------------------------------*
 | Main container section           |
 *----------------------------------*/
.main-section-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    padding: 0;
    min-height: 100vh;
    position: relative;
}

#main-section-content-top {
    width: 100vw;
    height: 20vh;
    min-height: 170px;
}

#main-section-content-bottom {
    width: 100vw;
    min-height: 80vh;
    padding: 30px;
    border-radius: 20px 20px 0 0;
    background: white;
    animation: translateYAnim 400ms ease forwards;
}

#main-section-content-bottom-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 35px;
    width: 100%;
    flex-direction: column;
}

#main-section-content-bottom-content-top h2.center {
    text-align: center;
    width: 100%;
}

#main-section-content-bottom-content-middle p {
    text-align: center;
}

#main-section-content-bottom-content-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    gap: 10px;
}