:root {
    --neon-text-color: #f40;
    --neon-border-color: #08f;
}

@-webkit-keyframes roty {
    0% {
        -webkit-transform: translateX(-50%) translateY(-50%) rotate(0deg);
        transform: translateX(-50%) translateY(-50%) rotate(0deg);
    }

    100% {
        -webkit-transform: translateX(-50%) translateY(-50%) rotate(360deg);
        transform: translateX(-50%) translateY(-50%) rotate(360deg);
    }
}

@keyframes roty {
    0% {
        -webkit-transform: translateX(-50%) translateY(-50%) rotate(0deg);
        transform: translateX(-50%) translateY(-50%) rotate(0deg);
    }

    100% {
        -webkit-transform: translateX(-50%) translateY(-50%) rotate(360deg);
        transform: translateX(-50%) translateY(-50%) rotate(360deg);
    }
}


   body {
       background-image: url('../images2/img-bg/c.jpg');
       background-size: cover;
       background-position: center center;
       background-repeat: no-repeat;
       background-attachment: fixed;
       font-family: Helvetica, sans-serif;
       color: rgb(8, 0, 22);
       margin: 0;
       padding: 0;
       min-height: 100vh;
   }


.containerPass {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.containerPass i {
    cursor: pointer;
    /*color: white;*/
}


.return a {
    position: absolute!important;
    top: 30% !important;
    left: 50%!important;
    font-size: 25px!important; /* taille du texte  modifiée =======================================*/
    color: white!important;
    text-decoration: none!important;
    -webkit-transform: translateX(-50%) translateY(-50%)!important;
    -ms-transform: translateX(-50%) translateY(-50%)!important;
    transform: translateX(-50%) translateY(-50%)!important;
}

.return h1 {
    font-size: 25px!important;
}

.responsive {
    width: 100%;
    height: 100vh;
}

/*==================================================*/


input[type="text"],
input[type="password"],
input[type="submit"] {
    width: 100%;
    padding: 9px 0;
    margin: 10px 0;
    font-size: 20px;
    border: 1px solid rgba(176, 0, 0, 1.00);
    text-align: center;
}

input[type="text"]:hover,
input[type="password"]:hover,
input[type="submit"]:hover {
    border: 1px solid blue;
    background-color: rgba(102, 153, 153, 0.2);
    color: white;
}

#CodeVerif {
    background-color: rgba(234, 104, 104, .5);
    color: white;
}

#send {
    background-color: rgba(131, 160, 216, 1);
    color: darkred;
}

#send:hover {
    background-color: rgba(221, 85, 106, 0.50);
    color: #fff;
}



/*//////////////////////////////////////////////////////////////*/

.alert {
    text-align: center;
    font-weight: 900;
    font-size: 20px;
    color: red;
    z-index: 99999;
    letter-spacing: 3px;
}

/*//////////////////////////////////////////////////////////////*/

.login {
    overflow: hidden;
    background-color: rgba(6, 78, 114, 1.00);
    /* couleur bg form */
    padding: 40px 30px 30px 30px;
    border-radius: 10px;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80%;
    max-width: 500px;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: -webkit-transform 300ms, box-shadow 300ms;
    -webkit-transition: -webkit-transform 300ms, -webkit-box-shadow 300ms;
    transition: -webkit-transform 300ms, -webkit-box-shadow 300ms;
    -o-transition: transform 300ms, box-shadow 300ms;
    transition: transform 300ms, box-shadow 300ms;
    transition: transform 300ms, box-shadow 300ms, -webkit-transform 300ms, -webkit-box-shadow 300ms;
    -webkit-box-shadow: 5px 10px 10px rgba(183, 183, 183, 0.5);
    box-shadow: 5px 10px 10px rgba(183, 183, 183, 0.5);
}

.login::before,
.login::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-top-left-radius: 40%;
    border-top-right-radius: 45%;
    border-bottom-left-radius: 35%;
    border-bottom-right-radius: 40%;
    z-index: -1;
}

.login::before {
    left: 40%;
    bottom: -130%;
    background-color: grey;
    -webkit-animation: wawes 6s infinite linear;
    animation: wawes 6s infinite linear;
}

.login::after {
    left: 35%;
    bottom: -125%;
    background-color: #fff;
    /* couleur bg form droite */
    -webkit-animation: wawes 7s infinite;
    animation: wawes 7s infinite;
}


@-webkit-keyframes wawes {
    from {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }

    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes wawes {
    from {
        -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
        transform: rotate(0);
    }

    to {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

fieldset {
    width: auto;
    margin-bottom: 20px;
}

legend {
    margin: 0 auto;
    color: #fff;
    font-size: 25px;
}




/*==================================================*/

@media screen and (min-width: 836px) and (max-width: 1635px) {

    a {
        font-size: 50px;
        text-align: center;
    }

    .container h6 {
        font-size: 30px;
    }

    input[type="text"],
    input[type="password"],
    input[type="submit"] {
        font-size: 10px;
    }

    .alert {
        font-size: 20px;
    }

}

@media screen and (min-width: 150px) and (max-width: 835px) {

    a {
        font-size: 40px;
        text-align: center;
    }

    a:before,
    a:after {
        border: 10px solid red;
    }

    a:before {
        border-color: #d9524a #d9524a rgba(0, 0, 0, 0) rgba(0, 0, 0, 0);
        z-index: -1;
    }

    a:after {
        border-color: rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) #d9524a #d9524a;
        -webkit-box-shadow: 25px 25px 25px rgba(94, 94, 141, 0.3);
        box-shadow: 25px 25px 25px rgba(94, 94, 141, 0.3);
    }

    .container h6 {
        font-size: 30px;
    }

    input[type="text"],
    input[type="password"],
    input[type="submit"] {
        font-size: 15px;
    }

    legend {
        font-size: 15px;
    }

    .alert {
        font-size: 15px;
        font-weight: bold;
        letter-spacing: 1px;
    }

}