.login_container{
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url(../image/user_bg.png);
  background-size: cover;
  padding: 0 20px;
}
.login_box{
  background-color:transparent;
  padding:20px 30px;
  width: 400px;
  border-radius: 20px;
  border: 1px solid #fff;
  backdrop-filter: blur(4px);
}
#login_text{
  text-align:center;
  margin-bottom: 30px;
  font-size:40px;
  color:#FFF;
}
.input_box{
  width: 90%;
  margin: auto;
  height: 40px;
  position: relative;
  margin-bottom: 20px;
}
.form-group{
  margin-bottom: 15px;
}
#login_Username,
#login_password{
  height: 40px;
  width: 100%;
  border-radius: 14px;
  font-size: 18px;
  box-sizing: border-box;
  outline: none;
  border: none;
  color: black;
}
#login_Username:hover,
#login_password:hover{
  border: 2px solid white;
  background:local;
  color: white;
}
.error{
  color: red;
}
#login_lable{
  font-size: 18px;
}
.login{
  text-align: center;
}
.login button{
  cursor: pointer;
  width: 180px;
  height:40px;
  margin-top:30px;
  border-radius: 20px;
  font-size:16px;
  font-weight:bold;
  background-color: #fff;
  border: none;
  outline:none;
  color:black;
}
.login button:hover{
  border: 1px solid white;
  background:local;
  color: white;;
}
#login_check{
  margin-right: 100px;
}
/* #login_btn{
  margin-left: 80px;
} */
label{
  color:white;
}

/* registration page css */
.Registration{
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 50px 20px;
  background-image: url('../image/user_bg.png');
  background-size: cover;
  
}
 .Registration_title{
  text-align:center;
  margin-bottom: 30px;
  font-size:40px;
  color:#FFF;
}
.Registration_body{
  background-color:transparent;
  padding:50px 30px;
  width:100%;
  border-radius: 20px;
  border: 1px solid #fff;
  backdrop-filter: blur(4px);
  margin-top: 2%; 
}
.Registration_body form .user-details{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  margin: 10px 0 12px 0;
}
form .user-details .input-box{
  margin-bottom: 10px;
  width:100%;
}
form .input-box span.details{
  display:inline-flex;
  font-weight: 900;
  margin-bottom: 5px;
  color: white;
  width: 30%;
}
.user-details .input-box input{
  height:40px;
  width: 100%;
  box-sizing: border-box;
  outline: none;
  border: none;
  color: black;
  font-size: 18px;
  border-radius: 14px;
}
.user-details .input-box input:hover{
  border: 2px solid white;
  background:local;
  color: white;;
}
#register-btn{
  width: 180px;
  height:40px;
  margin-top:10px;
  border-radius: 20px;
  font-size:16px;
  font-weight:bold;
  background-color: #fff;
  transition: .3s;
  color: #000000;
}
#register-btn:hover{
  cursor: pointer;
  background-color:transparent;
  color:#fff;
  border: 1px solid #fff;
}
span.text-danger{
  color: red;
}
@media(max-width: 584px){
  .Registration{
    max-width: 100%;
  }
  form .user-details .input-box{
    margin-bottom: 15px;
    width: 100%;
  }
  form .category{
    width: 100%;
  }
  .content form .user-details{
    max-height: 300px;
    overflow-y: scroll;
  }

}
 .details{
  margin-top: 8px;
 }
.error_container {
  height: auto;
  background-color: #fce4e4;
  width: 100%;
  margin-top: 10%;
  padding-left: 10%;
  border: 1px solid #fcc2c3;
}
p.error_msg {
  color: red;
  margin-top: 12px;
  justify-content: center;
}
.error_btn_div{
  margin-top: 10px;
  text-align: center;
}
#error_btn{

  margin-bottom: 20%;
  color:#2271b1;
  font-weight:500;
}
#error_btn:hover{
  color:red;
}
.error_main{
  padding: 10px;
  height: 500px;
}
input#profile_image {
  color: #ffffff !important;
}