* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body{
    background-color: #f5f5f5 !important;
    background-repeat: no-repeat;
    background-size: 100%;
}

#overlay{
    position:fixed;
    left:0px;
    top:0px;
    height:100%;
    width:100%;
    background-color: #000;
}

.navbar{
    width: 100%;
    height: 79px;
    background-color: #143864;
    padding: 1.5% 7%;
    position: fixed;

}

.navbar h1{
    color: WHITE;
    font-weight: lighter;
    
}
/*CIRCLE 1 and WELCOME_XILLIUM*/
.circle1{
    height: 466px;
    width: 509px;
    left: 239px;
    top: -250px;
    background-color:#44B400;
    border-radius: 50%;
    opacity: 40%;
    position:absolute;
    z-index: -1;

}
.welcome_xillium{

    left: 385px;
    top: 120px;
    font-size:120%;
    position:absolute;


}

/*MOCK TAGLINE*/
.tagline {
    
    font-size: 50px;
    text-transform: uppercase;
    font-weight: bolder;
    color:white;
    text-shadow: 3px 3px 6px #222222;
}

/*CIRCLE 2 and SUB DETAILS*/
.circle2{
    position: absolute;
    width: 530px;
    height: 252px;
    left: 280px;
    top: 500px;
    border-top-left-radius: 270px;
    border-top-right-radius: 270px;
    overflow: hidden;

    background: rgba(0, 27, 98, 0.6);

    z-index: -1;
}
.subdet{
    font-size: 27px;
    font-weight: 600;
    line-height: 38px;
    letter-spacing: 0em;
    text-align: center;
    color:white;

    left: 387px;
    top: 575px;

    position: absolute;

}

.subdet .hlght{
    color:yellow;
    text-shadow: 3px 3px 6px #222222;
}

/* FORM DIMENSIONS*/
.login-form{
    background-color: #F3F3F3;
    padding:30px;
    border-radius: 20px;
    z-index: -1;
    box-shadow: 3px 3px 10px #222222;
}

.login-form .login-header{
    display:flex;
    padding: 10%;
    justify-content: center;
}



/*USERNAME*/
.icon-usn{
    background-color: #777777;
    padding: 2%;
    justify-content: center;    
    box-shadow: 10% 10% 10% 5%;
}
.usn{
    width: 100%;
    padding:3%;
    
    border-width: 0.01vh;
    align-self: center;
}

.username{
    display: flex;
    padding:2%;
}

/*PASSWORD*/

.icon-psw{
    background-color: #777777;
    padding: 2% 2.75%;
    justify-content: center;    
}
.psw{
    width: 100%;
    padding:3%;
    
    border-width: 0.01vh;
    align-self: center;
}

.password{
    display: flex;
    padding:2%;
}


/*LOGIN BUTTON*/
.login-submit{
    padding: 4%;
    width: 100%;
    border-radius: 10px;
    background-color: blue;
    border-style: none;
    margin: 2% 0%;
    font-weight: 700;
    color:white;
    transition: 0.25s;

}
.login-submit:active{
    
    padding: 4%;
    width: 100%;
    border-radius: 20px;
    background-color: lightblue;
    border-style: none;
    margin: 2% 0%;
    font-weight: 700;
    color:white;
}


/*FORGOT PASSWORD*/
.forgotpasswd{
    display: flex;
    padding: 1% 0% 3% 1%;
}
.forgotpasswd p,a{
    font-size: x-small;
    text-decoration: none;
 
}


/*SIGN UP SUGGEST*/

.signup-alt{
    display:flex;
    color:#222222;
    font-size: small;
    justify-content: center;
    padding:3% 1% 1% 1%;

}

.signup-alt hr{
    width: 25%;
    height: 2%;
    align-self: center;
    margin: 0% 2%;
    color:#222222;
}

/*SIGNUP BUTTON*/


.signup-submit{
    padding: 4%;
    width: 100%;
    border-radius: 20px;
    background-color: white;
    border-color: blue;
    margin: 2% 0%;
    font-weight: 700;
    color:blue;
    transition: 0.25s;

}

.signup-submit:hover{
    padding: 4%;
    width: 100%;
    border-radius: 20px;
    background-color: rgb(37, 37, 179);
 
    margin: 2% 0%;
    color:white;
    transition: 0.25s;

}

