@import url('fonts/Poppins/Poppins.css');
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins',sans-serif;
}
html, body{
  display: flex;
  height: 100%;
  width: 100%;
  justify-content: center;
  align-items: center;
}
body {
  background: url(images/intro2.jpg) no-repeat center center;
  background-size: cover;
}
body:before {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  background: rgb(175 175 175 / 78%);
  background-repeat: no-repeat;
  bottom: 0;
  left: 0;
  z-index: -1;
}
.container{
  background: rgb(255 255 255 / 75%);
  max-width: 450px;
  width: 100%;
  padding: 25px 30px;
  border-radius: 5px;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.15);
}
.container form .title{
  font-size: 30px;
  font-weight: 600;
  margin: 20px 0 10px 0;
  position: relative;
}
.container form .title:before{
  content: '';
  position: absolute;
  height: 4px;
  width: 33px;
  left: 0px;
  bottom: 3px;
  border-radius: 5px;
  background: linear-gradient(to right, #1d000a 0%, #fc1362 100%);
}
.container form .input-box{
  width: 100%;
  height: 45px;
  margin-top: 25px;
  position: relative;
}
.container form .input-box input{
  width: 100%;
  height: 100%;
  outline: none;
  font-size: 16px;
  border: none;
  padding: 0 10px;
}
.container form .underline::before{
  content: '';
  position: absolute;
  height: 2px;
  width: 100%;
  background: #ccc;
  left: 0;
  bottom: 0;
}
.container form .underline::after{
  content: '';
  position: absolute;
  height: 2px;
  width: 100%;
  background: linear-gradient(to right, #1d000a 0%, #fc1362 100%);
  left: 0;
  bottom: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: all 0.3s ease;
}
.container form .input-box input:focus ~ .underline::after,
.container form .input-box input:valid ~ .underline::after{
  transform: scaleX(1);
  transform-origin: left;
}
.container form .button{
  margin: 40px 0 20px 0;
}
.container .input-box input[type="submit"]{
  background: linear-gradient(to right, #1d000a 0%, #fc1362 100%);
  font-size: 17px;
  color: #fff;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.container .input-box input[type="submit"]:hover{
  letter-spacing: 1px;
  background: #1d000a;
}
.container .option{
  font-size: 14px;
  text-align: center;
}
.option_div{
  margin-top: 15px;
  display: flex;
  justify-content: space-between;
}
.option_div .check_box{
  display: flex;
  align-items: center;
}
.option_div span{
  margin-left: 5px;
  font-size: 16px;
  color: #333;
}
.option_div .forget_div a{
  font-size: 16px;
  color: #2eb8ce;
}
.alert_error {
    color: #ffffff;
    background: #ee6e73;
    margin: 10px 0;
    padding: 10px 0;
    padding-left: 1.5rem;
    border-left: 5px solid #ff1d00;
    border-radius: 3px;
}
.alert_warning {
  color: #ffffff;
    background: #faaf2a;
    margin: 10px 0;
    padding: 10px 0;
    padding-left: 1.5rem;
    border-left: 5px solid #f67c00;
    border-radius: 3px;
}
.alert_success {
    color: #ffffff;
    background: #8BC34A;
    margin: 10px 0;
    padding: 10px 0;
    padding-left: 1.5rem;
    border-left: 5px solid #49871d;
    border-radius: 3px;
}

.alert_error b, .alert_warning b, .alert_success b {
  color: #404040;
}

@media screen and (max-width:767px){
  .container {
    background: #fff;
    box-shadow: none;
    border-radius: 0;
  }
}