body {
    overflow-x: hidden;
}

.containers {
    background-color: #336a7dcc;
    height: 100%;
    min-height: 100vh;
    margin: 0px;
}
.no_deco{
    text-decoration: none;
}
.register_link{
    width: 100%;
    text-align: center;
    text-decoration: none;
    color: #C20000;
}
.login_content {
    background-color: white;
    border-radius: 20px;
    z-index: 8;
    position: relative;
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    width: 50%;
    box-shadow: 0 0.3px 0.7px rgba(0, 0, 0, 0.126),
    0 0.9px 1.7px rgba(0, 0, 0, 0.179), 0 1.8px 3.5px rgba(0, 0, 0, 0.224),
    0 3.7px 7.3px rgba(0, 0, 0, 0.277), 0 10px 20px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(20px);
    transition: 0.5s ease;
    margin: auto;
    margin-top: 70px;

}
.forgetpass,.forgetpass:hover,.forgetpass:focus,.forgetpass:active {
    color: white;
    text-decoration: none;
}
@keyframes flyAround {
    0% {
        transform: translateX(0) translateY(0) rotate(0);
    }
    25% {
        transform: translateX(100px) translateY(-100px) rotate(90deg);
    }
    50% {
        transform: translateX(200px) translateY(0) rotate(180deg);
    }
    75% {
        transform: translateX(100px) translateY(100px) rotate(270deg);
    }
    100% {
        transform: translateX(0) translateY(0) rotate(360deg);
    }
}

.login_content:hover {
    box-shadow: 0 0.7px 1px rgba(0, 0, 0, 0.157),
    0 1.7px 2.6px rgba(0, 0, 0, 0.224), 0 3.5px 5.3px rgba(0, 0, 0, 0.28),
    0 7.3px 11px rgba(0, 0, 0, 0.346), 0 20px 30px rgba(0, 0, 0, 0.5);
}

.title {
    color: white;
    text-shadow:0 0.7px 1px rgba(0, 0, 0, 0.157),
    0 1.7px 2.6px rgba(0, 0, 0, 0.224), 0 3.5px 5.3px rgba(0, 0, 0, 0.28),
    0 7.3px 11px rgba(0, 0, 0, 0.346), 0 20px 30px rgba(0, 0, 0, 0.5);
}

.bgimg {
    position: relative;
    width: 100%;
    height: 70vh;
}

.plane {
    position: absolute;
    bottom: -160px;
    z-index: 5;
    transform: translateX(-100%); /* Move the plane off-screen to the left */
    animation: flyToRight 10s linear infinite; /* Apply the animation */
}
.planes {
    display: none;
}
/* Define the animation */
@keyframes flyToRight {
    0% {
        transform: translateX(-100%); /* Move the plane off-screen to the left */
    }
    100% {
        transform: translateX(280%); /* Move the plane off-screen to the right */
    }
}

.sky {
    width: 100%;
    position: absolute;
    height: 70vh;
    z-index: 1;
    border-radius: 200px 20px 20px 200px;
}

.sign-in-form {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    text-align: center;
    margin: auto;
    width: 100%;
    height: 100%;
    flex-direction: column;
}

.sign-up-form {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    text-align: center;
    margin: auto;
    width: 100%;
    height: 100%;
    flex-direction: column;
    padding: 20px;
}

#bgimg canvas {

    position: absolute;
    z-index: 1;
    width: 100% !important;
    height: 100% !important;
}

#bgsky {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 80px;
    z-index: 1;
    min-height: 112vh;;
}

.input-field {
    width: 50%;
    margin: auto;
    text-align: center;
    position: relative;
}

.input-field i {
    position: absolute;
    left: 20px;
    top: 12px;
}

.input-field input, .input-field input:hover, .input-field input:focus {
    border: none;
    background-color: white !important;
    border-radius: 3px;
    line-height: 23px;
    height: 40px;
    width: 100%;
    padding-left: 40px;
    padding-right: 35px;
    margin-bottom: 20px;;
}

.input-passwd {
    position: relative;
}

.input-passwd .fa-eye {
    position: absolute;
    right: 12px;
    top: 12px;
    left: inherit;
}

.blurred-box {
    position: relative;
    width: 250px;
    height: 350px;
    top: calc(50% - 175px);
    left: calc(50% - 125px);
    background: inherit;
    border-radius: 2px;
    overflow: hidden;
}

.blurred-box:after {
    content: '';
    width: 300px;
    height: 300px;
    background: inherit;
    position: absolute;
    left: -25px;
    right: 0;
    bottom: 0;
    box-shadow: inset 0 0 0 200px rgba(255, 255, 255, 0.05);
    filter: blur(10px);
}

.ligne {
    height: 1px;
    background-color: black;
    width: 20%;
    margin: auto;
}
.iti{
    width: 100%;
    margin: auto;
    text-align: center;
    position: relative;
}
#error-msg{
    color: white;
    font-size: 15px;
    margin-top: 10px;
    margin-bottom: 10px;
    text-align: left;
    background-color: #ff7272;
    float: right;
    width: 100%;
    padding-left: 5px;
}
.w75 {
    width: 75%;
}
#country{
    padding-left: 50px;
}
@media (max-width: 600px) {
    .plane {
        width: 50%;
        bottom: -35px;
    }

    .login_content {
        width: 95%;
    }

    .w75 {
        width: 100%;
    }
}
.footer {

    padding-top: 50px;
}