 body {
    background-image: url("image2.jpg?88888888");
    overflow: hidden;
    background-size: cover;
    -webkit-animation: slidein 100s;
    animation: slidein 100s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-direction: alternate;
    animation-direction: alternate;
}

@-webkit-keyframes slidein {
    from {
        background-position: top;
        background-size: 1500px;
    }

    to {
        background-position: -100px 0px;
        background-size: 1750px;
    }
}

@keyframes slidein {
    from {
        background-position: top;
        background-size: 1500px;
    }

    to {
        background-position: -100px 0px;
        background-size: 1750px;
    }
}

.bg-image-vertical {
    position: relative;
    overflow: hidden;
    background-repeat: no-repeat;
    background-position: right center;
    background-size: auto 100%;
}

section {
    padding: 0 200px;
}

.form-field {
    width: 90%;
    justify-content: center;
}

form {
    height: 100vh;
    width: 90%;
}

.container-fluid { 
    border-radius: 10px;
    width: 100%;
}

.row {
    border-radius: 7px;
    background-color: #cec4c492;
    backdrop-filter: blur(3px);
    width: 100%;
    
}

.leftSide {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 50%
}

.logo-field {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.password {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    color: #272826;
    padding-top: 10px;
}

label {
    color: gainsboro;
    font-size: 14px;
}

.image {
    /* height: 100%; */
    width: 50%;
    border-radius: 5px;
}

.link {
    color: #f0eddf;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
}

.media {
    display: none;
}

.login {
    color: #41644a;
    text-align: center;
    font-size: 24px;
    font-weight: bold;
}

.logo {
    width: 50%;
}

@media (max-width: 990px) {
   
    .leftSide {
        display: none;
    }

    .image {
        display: none;
    }

    .media {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        overflow: hidden;
        width: 100%;
    }

    

    label {
        color: gainsboro;
        font-size: 13px;
    }

    .login-viaPhone {
        overflow: hidden;
        padding-top: 50px;
        padding-left: 5px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        background-color: #b2b2b2aa;
        backdrop-filter: blur(14px); 
        width: 100%;
    }

    .password {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px 0;
        color: #272826;
        padding-top: 10px;
    }

    .logo {
        width: 200px;
        margin-bottom: 30px;
    }
}


@media (min-width:990px) {
    .leftSide {
        padding-top: 150px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
}

@media (min-width:1300px) {
    .leftSide {
        padding-top: 100px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
}

@media (min-width:1400px) {
    .leftSide {
        padding-top: 150px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

}

@media (min-width:2500px) {
    .leftSide {
        padding-top: 200px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

}

@media (min-width:3000px) {
    .leftSide {
        padding-top: 400px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

}