/* navbar Css styles */

@import "navbar.css";

/* navbar Css styles */

body{
    overflow-x: hidden;
}
#loading{
    width: 100%;
    height: 100vh;
    background:#d3d3d3 url(all-images/VAyR.gif) no-repeat center;
    background-size: 35px;
    position: fixed;
    z-index: 99999;
    display: flex;
    flex-direction:column ;
    justify-content: center;
    align-items: center;
}

.section_1{
    background-size: cover;
    background-position: center;
    position: absolute;
    height: 100%;
    width: 100%;
    top: 90px;
}
.section_1-sm{
    animation: background-slideshow 20s ease-in-out infinite;
    background-size: cover;
    background-position: center;
    position: absolute;
    height: 100%;
    width: 100%;
    top: 90px;
}
@keyframes background-slideshow {
    0%,100%{
        background-image: radial-gradient(rgba(0, 0, 0, 0.6),rgba(0,0,0,0.6)),url(./all-images/drone-bg1.png);
    }
    25%
    {
        background-image: radial-gradient(rgba(0,0,0,0.6),rgba(0,0,0,0.6)),url(./all-images/drone-bg2.png);
    }
    50%
    {
        background-image: radial-gradient(rgba(0,0,0,0.6),rgba(0,0,0,0.6)),url(./all-images/drone-bg3.png);
    }
    75%
    {
        background-image: radial-gradient(rgba(0,0,0,0.6),rgba(0,0,0,0.6)),url(./all-images/drone-bg1.png);
    }
}
.bg-video-1{
    position: absolute;
    bottom: 0;
    right: 0px;
    z-index: -1;
    top: 0px;
}
@media (max-aspect-ratio: 16/8) {
    .bg-video-1{
        width: auto;
        height: 100%;
    }
}
@media (min-aspect-ratio: 16/8) {
    .bg-video-1{
        width: 100%;
        height: auto;
    }
}
.login-container{
    width: 85%;
    background-color: transparent;
    margin: auto;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.login-container1{
    width: 85%;
    background-color: transparent;
    margin: auto;
    height: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
}
.login-card{
    background-color: #6c5f5b70;
    width: 400px;
    border-radius: 15px ;
    padding: 40px;
}
.login-card-small-devices{
    background-color: #6c5f5b70;
    width: 280px;
    border-radius: 15px ;
    padding: 20px;
    margin: auto;
}
.login-heading{
    text-align: center;
    color: #4F4A45;
    font-family:'MuseoModerno', cursive ;
    font-weight: bold;
}
label{
    color: #4F4A45;
    font-size: 17px;
    font-family:'MuseoModerno', cursive ;
}
#Uname{
    width: 240px;
    height: 30px;
    border: none;
    border-radius: 3px;
    padding-left: 8px;
    font-family:'MuseoModerno', cursive ;
}
#Pass{
    width: 240px;
    height: 30px;
    border: none;
    border-radius: 3px;
    padding-left: 8px;
    font-family:'MuseoModerno', cursive ;
}
.login-button{
    width: 150px;
    height: 40px;
    border-radius: 17px;
    padding-left: 7px;
    font-weight: 900;
    border: none;
    color: #F6F1EE;
    background-color: #6C5F5B;
    font-family:'MuseoModerno', cursive ;
}
.login-button:hover{
    transform: scale(1.07);
    background-color: #F6F1EE;
    color: #6C5F5B;
    border: 1px solid #6C5F5B;
}

.Forgot-password{
    color: #4F4A45;
    font-family:'MuseoModerno', cursive ;
    font-size: 17px;
    text-decoration: none;
    float: right;
}
.Forgot-password:hover{
    color: #ED7D31;
}
@media (min-width: 1000px){
    #Uname{
        width: 300px;
        height: 30px;
        
    }
    #Pass{
        width: 300px;
        height: 30px;

    }
}
#invalid{
    color: #ff0000;
    margin-bottom: 5px;
    font-family:'MuseoModerno', cursive ;
    font-size: 15px;
    font-weight: bold;
}