*{
  margin-top: 0%;
  margin-left: 0%;
  margin-right: 0%;
  margin-bottom:0%;
}
#bg_img{
    top: 0%;
  left: 0%;
  right: 0%;
   bottom:0%;
    width: 100%;
    height: 100vh;
    opacity: 0.5;
  object-fit: cover to cover;
  position: fixed;
}
#bg_color{
  background-color:rgba(10, 26, 102,0.6);
  top: 0%;
  left: 0%;
  right: 0%;
  bottom:0%;
  width: 100%; 
  height: 100vh;
  position: fixed;
}
#login_form{
  margin-top: 8%;
  margin-left: 60vh;
  position: absolute;
  z-index: 1;
  background-color: white;
  border-radius: 25px;
  width: 35%;
  box-shadow: inset 3px 3px 8px rgba(0, 0, 0, 0.2);
}
.form_title{
  text-align: center;
  padding-top: 5%;
  padding-bottom: 5%;
  font-size: 30px;
  color: #1284E0;
  font-weight: bold;
  background-color: rgba(0,0,0,0.05);
}
label{
  color: #0A1A66;
  font-size: 20px;
  padding-left: 12%;
  padding-bottom: 5%;
  margin-top: 20px;
  display: inline-flex
}
input{
  margin-left: 10%;
  margin-bottom: 10%;
  border: none;
  padding-top: 5px;
  width: 80%;
  padding-bottom: 5px;
  padding-left: 10px;
  padding-right: 5px;
  border-radius: 5px;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.25), 0 2px 8px rgba(0, 0, 0, 0.25), inset 0px 0px 0px 1px rgba(255, 255, 255, 0.1);
}
input:focus{
  outline: none
}
#login_button{
  border: none;
  padding-top: 4%;
  padding-bottom: 4%;
  padding-left: 8%;
  padding-right: 8%;
  font-size: 15px;
  background-color: #120C7A;
  color: white;
  margin-left: 30%;
  cursor: pointer
}
#login_button:hover{
  background-color: rgba(255,255,255,0.4);
  color: #120C7A;
  border: 3px solid #120C7A;
  border-radius: 7px;
}
#sign_up_statement{
  color: rgba(0,0,0,0.6);
  text-align: center;
  margin-top: 10%;
  padding-bottom: 10%
}
#sign_up{
  color: #1697F2;
  cursor: pointer
}
a{
  text-decoration: none;
  color: inherit
}