@import "page.css";

.prt-login
{
    margin: 100px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 79dvh;
}
.row-login
{
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: auto;
}

.login-decoration
{
    z-index: -1;
    position: absolute;
}
.login-decoration .circle
{
    width: 50vw;
    border-radius: 100%;
    height: 50vw;
    position: fixed;
    bottom: 2%;
    right: 5%;
    background: #0AA5E611;
}
.login-decoration .circle:nth-child(2)
{
    background: #ABCA0C27;
    width: 60vw;
    height: 60vw;
    position: fixed;
    bottom: -50%;
    right: -20%;
}
.login-separator
{
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 50px 0;
}
.login-separator .bar
{
    width: 100%;
    height: 0.8vh;
    background: #E5E5E5;
    border-radius: 20px;
}
.login-separator p
{
    margin: 0 20px;
    font-size: var(--h2);
}
.decors h2
{
    text-align: right;
}
.mdp-contains
{
    margin: 5px 0;
    list-style: none;
}
.mdp-contains li.none::before
{
    content: "\e5cd";
    color: var(--gc-inactive);
    font-family: 'Material Symbols Rounded', sans-serif;
}
.mdp-contains li.check::before
{
    content: "\e5ca";
    color: var(--gc-active);
    font-family: 'Material Symbols Rounded', sans-serif;
}
.end-inscri
{
    display: flex;
    flex-direction: column;
    margin: 100px 0;
    align-items: center;
}
.end-inscri h1
{
    font-size: var(--h1-important);
}
.end-inscri .cnt-inscri
{
    background: #EEEEEE;
    margin: 50px 0;
    padding: 40px;
    border-radius: 20px;
    width: 55dvw;
    min-height: 55dvh;
    position: relative;
}
.end-inscri .cnt-inscri h2
{
    text-align: center;
    font-size: var(--h2);
    font-weight: 600;
}
.end-inscri .cnt-inscri .slider
{
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
    width: 80%;
}
.end-inscri .cnt-inscri .slider .etape
{
    width: 100%;
    height: 1dvh;
    border-radius: 20px;
    background: var(--gc-secondary);
    margin: 0 10px;
}
.end-inscri .cnt-inscri .slider .etape.active
{
    background: var(--gc-primary);
}
.end-inscri .cnt-inscri hr
{
    margin: 50px 0;
    width: 40%;
    border-color: #E5E5E5;
}
.end-inscri .cnt-inscri p
{
    margin: 5px 0 25px 0;
}
.end-inscri .disp-buttons
{
    justify-content: space-between;
    margin: 50px 0;
}
.end-inscri .footer
{
    position: absolute;
    bottom: 0;
}
.end-inscri .footer p
{
    color: var(--gc-txt-secondary);
    font-size: 14px;
}
.end-inscri .footer a
{
    color: var(--gc-link);
}
.disp-flex
{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}


/** Affichage mobile de l'espace de connexion */
@media screen and (max-width: 760px) {

    .prt-login
    {
        grid-template-columns: 1fr;
        margin: 20px;
        height: auto;
    }
    .decors
    {
        display: none;
    }
    .login-decoration .circle
    {
        width: 70vw;
        height: 70vw;
        bottom: -5%;
        right: 5%;
    }
    .login-decoration .circle:nth-child(2)
    {
        bottom: -15%;
        width: 80vw;
        height: 80vw;
    }
    .login-separator
    {
        margin: 25px 0;
    }

}