/* CSS Page Connexion */

html, body {
    width: 100%;
    height: 100%;
    margin: 0px;
    padding: 0px;
    overflow-x: hidden;
}

body {
    background-image: linear-gradient(120deg, #fdfbfb 0%, #ebedee 100%);
}

p {
    font-family: 'Fira Sans', sans-serif;
    font-weight: 400;
    line-height: 1.2;
    font-size: 0.8rem;
    color: #141414;
    letter-spacing: -0.3px;
    margin-bottom: 0.5rem;
}

a {
    font-family: 'Fira Sans', sans-serif;
    font-weight: 400!important;
    line-height: 1.2;
    font-size: 1.1rem;
    color: #5f9bf2;
    letter-spacing: -0.3px;
}

a:hover{
    color:#f07e13;
}

h2 {
    font-family: 'Signika Negative', sans-serif;
    font-weight: 700;
    font-size: 2rem;
    line-height: 1;
    color: #141414;
    margin-bottom: 1rem;
    word-wrap: break-word;
    text-transform: uppercase;
}

h3 {
    font-family: 'Signika Negative', sans-serif;
    font-weight: 500;
    font-size: 1.4rem;
    line-height: 1;
    color: #141414;
}

.h3-1 {
    color: #f07e13;
}

.h3-2 {
    color: #5f9bf2;
}

.temp-text {
    color:#ff40bb;
}

#section-login {
    width:100%;
    max-width: 100%;
    padding-bottom:50px;
    margin:4rem 0px 4rem 0px;
    
    background-image: url("https://www.cawibox.fr/assets/svg/AUTRE/fond-abs-connexion-mob.svg");
    background-repeat: repeat-y;
    background-position: center center;
    background-size: 150%;
}

.container {
    margin:0px;
    padding:0px 0.5rem 0px 0.5rem;
    width:100%;
    max-width: 100%;
}

.bouton-retour {
    position: relative;
    display: flex;
    top:5vh;
    left:12vw;
    width:120px;
    height:50px;
    border-radius: 8px;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: white;
    border-style: solid;
    border-width: 2px;
    border-color: #141414;
    transition: .1s ease-in;
    z-index: 3;
}

.bouton-retour:hover {
    border-width: 4px;
    border-color: #f07e13;
    transition: .1s ease-in;
}

.bouton-retour:hover p {
    color:black;
    transition: .1s ease-in;
}

.bouton-retour p {
    font-size:1.2rem;
    font-family: 'Fira Sans', sans-serif;
    font-weight: 400;
    color:#141414;
    margin:0px;
    transition: .1s ease;
}

#fleche-exit {
    margin-right: 0.5rem;
    height: 15px;
    width:auto;
    transition: .1s ease;
}

.card {
    border-radius: 25px;
    padding:3rem;
    margin:100px 0px 100px 0px;
    text-align: justify;
    background-color: rgba(255, 255, 255, 0.70);
    box-shadow: 0px 3px 4px 1px rgba(0, 0, 0, 0.20);
}

.card h2 {
    text-align: center;
}

/***          MOBILE LARGE SM         ***/

@media (min-width: 578px) {
    
    .coupure-ligne {
        display:none;
    }
    
    #section-login {
        background-size: 110%;
    }
         
}



/***          TABLETTE MD         ***/

@media (min-width: 960px) {
   
    p{
       font-size: 1rem; 
    }
    
    #section-login {
        padding-bottom:0px;
        margin:0rem 0px 0rem 0px;
        background-image: url("https://www.cawibox.fr/assets/svg/AUTRE/fond-abs-connexion-25.svg");
        background-size: 170%;

    }
    
    .bouton-retour {
        top:6vh;
        left:8vw;
    }
         
}

/***          DESKTOP LG         ***/

@media (min-width: 1368px) {
    
    #section-login {
        background-size: 120%;
    }
}

/***          DESKTOP LARGE XL         ***/

@media (min-width: 1920px) {
    
    #section-login {
        background-size: 110%;
    }
         
}