/* general & imgs */
.compte-non-connecter{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    position: relative;
    min-height: 50rem;
    padding-top: 4rem;
    padding-bottom: 4rem;
}
.red{
    color: red;
}
.compte-non-connecter picture{
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
}
.compte-non-connecter picture img{
    height: 100%;
    width: 100%;
    object-fit: cover;   
}
.compte-non-connecter h1,
.compte-non-connecter .connexion{
    z-index: 1;
    color: var(--couleur-12);
    text-align: center;
}
.compte-non-connecter h1{
    font-size: 3rem;
}
/* general & imgs */

/* texts */
.compte-non-connecter p.description{
    font-family: var(--police-Poppins-Regular);
    font-size: 1.2rem;
}
/* texts */



/* connexion */
.compte-non-connecter .connexion{
    display: flex;
    gap: 5rem;
    margin-top: 3rem;
    align-items: center;
}

/* connexion left */
.compte-non-connecter .identifier{
    border: 1px solid var(--couleur-6);
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: center;
    gap: 1rem;
    padding: 3rem 3rem;
    background-color: var(--couleur-12);
    box-shadow: 0px 3px 6px #00000029;
    min-width: 30rem;
}

.compte-non-connecter .identifier h3,
.compte-non-connecter .identifier .demande_mdp,
.compte-non-connecter .identifier button{
    font-family: var(--police-Quicksand-Regular);
    text-align: center;
    font-weight: normal;
}
.compte-non-connecter .identifier h3{
    width: 100%;
    text-align: center;
    color: var(--couleur-1)
}

.compte-non-connecter .identifier button{
    width: 100%;
    font-weight: bold;
}
.compte-non-connecter .identifier .demande_mdp{
    text-align: left;
    cursor: pointer;
}
.compte-non-connecter .identifier .demande_mdp:hover{
    text-decoration: underline;
}

.compte-non-connecter .identifier .labelAndinput{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
}
.compte-non-connecter .identifier label{
    font-family: var(--police-Quicksand-Bold);
}

.compte-non-connecter .identifier input{
    width: 100%;
    background-color: var(--couleur-5);
    border: none;
    outline: none;
    padding: .5rem 1rem;
    color: var(--couleur-1);
    font-family: var(--police-Quicksand-Regular);
    font-size: 1rem;
    resize: none;
    border-radius: 5px;
    box-shadow: 0px 1px 3px #00000029;
    box-sizing: border-box;
}

.compte-non-connecter .identifier input::placeholder{
    color: var(--couleur-1);
}

.compte-non-connecter .identifier .eye_div{
    width: 100%;
    display: flex;
    gap: 0.5rem;
    align-items: center;
}   

/* connexion left */

/* ----------------------- */

/* connexion right */
.compte-non-connecter .creer{
    border: 1px solid var(--couleur-6);
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
    padding: 3rem 3rem;
    height: fit-content;
}

.compte-non-connecter .creer h3{
    color: var(--couleur-12);
    font-family: var(--police-Quicksand-Regular);
    font-weight: normal;
}

.compte-non-connecter .creer .create_button{
    min-width: 20rem;
}
.compte-non-connecter .creer .create_button button{
    width: 100%;
}
/* connexion right */

/* connexion */

@media screen and (max-width: 1100px) {
    .compte-non-connecter .connexion{
        flex-direction: column;
        align-items: center;
    }
}

@media screen and (max-width: 600px) {
    .compte-non-connecter h1{
        font-size: 2rem;
    }
    .compte-non-connecter p.description{
        font-size: 1rem;
    }
    .compte-non-connecter .identifier{
        min-width: 0 !important;
    }
}



@media screen and (max-width: 500px) {
    .compte-non-connecter h1{
        font-size: 1.8rem;
    }
    .compte-non-connecter p.description{
        font-size: .9rem;
    }
    .compte-non-connecter .connexion{
        width: 100%;
    }
    .compte-non-connecter .creer .create_button{
        min-width: 0;
    }
}

@media screen and (max-width: 400px) {
    .compte-non-connecter .identifier,
    .compte-non-connecter .creer
    {
        padding: 2rem 1.5rem;
    }
}