*{
    margin: 0;
    padding: 0;
    outline: none;
}
html{
    padding: 0px;
    margin: 0px;
    overflow: hidden;
}
body {
    font-family: arial, sans-serif;
}
a{
    outline:none;
}
.zone_contenu_clean{
    width: 100%;
    margin: auto;
}
.container {
    position: relative;
    width: 400px;
    margin-left: 150px;
    margin-top: calc(50vh - 200px);
}
form {
    background: rgba(245, 245, 245, .5);
    padding: 3rem;
    height: 320px;
    border-radius: 20px;
    border: 1px solid rgba(235, 235, 235, .3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    -moz-backdrop-filter: blur(10px);
    box-shadow: 20px 20px 40px -6px rgba(0, 0, 0, .3);
    text-align: center;
}
p {
    color: black;
    font-weight: 500;
    opacity: .7;
    font-size: 1.9rem;
    margin-bottom: 60px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, .2);
}

input {
    background: transparent;
    border: none;
    border-left: 1px solid rgba(255, 255, 255, .3);
    border-top: 1px solid rgba(255, 255, 255, .3);
    padding: 1rem;
    width: 200px;
    border-radius: 50px;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    -moz-backdrop-filter: blur(5px);
    box-shadow: 4px 4px 60px rgba(0, 0, 0, .2);
    color: black;
    font-weight: 500;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, .2);
    transition: all .3s;
    margin-bottom: 2em;
}
input:hover,
input[type="text"]:focus,
input[type="password"]:focus{
    background: rgba(255,255,255,0.1);
    box-shadow: 4px 4px 60px 8px rgba(0,0,0,0.2);
}

input[type="submit"] {
    margin-top: 10px;
    width: 150px;
    cursor: pointer;
}

::placeholder {
    color: #000;
}

/**** Gestion des cadres en transparence ****/
.drop {
    background: rgba(245, 245, 245, .3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 10px;
    border: 1px solid rgba(245, 245, 245, .3);
    box-shadow: 10px 10px 60px -8px rgba(0,0,0,0.2);
    position: absolute;
    transition: all 0.2s ease;
}
.drop-1 {
    height: 80px; width: 80px;
    top: -20px; left: -40px;
    z-index: -1;
    animation: spin 4s linear infinite;
}

.drop-2 {
    height: 80px; width: 80px;
    bottom: -30px; right: -20px;
    animation: spin 5s linear infinite;
}

.drop-3 {
    height: 100px; width: 100px;
    bottom: 120px; right: -50px;
    z-index: -1;
    animation: spin 3s linear infinite;
}

.drop-4 {
    height: 120px; width: 120px;
    top: -60px; right: -60px;
    animation: spin 6s linear infinite;
}

.drop-5 {
    height: 60px; width: 60px;
    bottom: 170px; left: 90px;
    z-index: -1;

}
/*** Animation des cadres en transparence ***/
@keyframes spin {
    0% {
        transform: translate(-5%, -5%) rotate(0deg) translate(5px) rotate(0deg);
    }
    100% {
        transform: translate(-5%, -5%) rotate(360deg) translate(5px) rotate(-360deg);
    }
}
.content{
    width: unset;
    min-height: unset;
}
.login_info{
    position: absolute;
    width: 100vw;
    height: 50px;
    border-bottom: 1px solid #79FF4D;
    background-color: rgba(119, 255, 103,0.5);
    line-height: 50px;
    font-size: 12px;
    color: #000000;
    text-align: center;
    top: 0px;
    left: 0px;
    cursor: pointer;
}
.login_info_error{
    position: absolute;
    width: 100vw;
    height: 50px;
    border-bottom: 1px solid rgba(255, 84, 84,0.8);;
    background-color: rgba(194, 28, 20,0.6);
    line-height: 50px;
    font-size: 12px;
    color: #ffffff;
    text-align: center;
    top: 0px;
    left: 0px;
    cursor: pointer;
}