@import url('https://fonts.googleapis.com/css?family=Poppins:400,500,600,700&display=swap');
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}
body{
  min-height: 100vh;
  /*display: flex;*/
  align-items: center;
  justify-content: center;
  background: #fff;
}
.wrapper{
  position: relative;
  width: 100%;
  /*background: #fff;*/
  padding: 35px 50px;
  border-radius: 6px;
  /*box-shadow: 0 5px 10px rgba(0,0,0,0.2);*/
}
.wrapper h2{
  position: relative;
  font-size: 22px;
  font-weight: 600;
  color: #333;
}
.wrapper h2::before{
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 28px;
  border-radius: 12px;
  background: #4070f4;
}
.wrapper .join-now{
  margin-top: 30px;
}
.wrapper .join-now .input-box{
  height: 52px;
  margin:0 0 10px;
}
.wrapper ul li{
        font-size:12px;
    }
.join-now .input-box input{
  height: 100%;
  width: 100%;
  outline: none;
  padding: 0 15px;
  font-size: 17px;
  font-weight: 400;
  color: #333;
  border: 1.5px solid #C7BEBE;
  border-bottom-width: 2.5px;
  border-radius: 6px;
  transition: all 0.3s ease;
}
.join-now .input-box select {
    height: 100%;
    width: 100%;
    outline: none;
    padding: 0 15px;
    font-size: 17px;
    font-weight: 400;
    color: #333;
    border: 1.5px solid #C7BEBE;
    border-bottom-width: 2.5px;
    border-radius: 6px;
    transition: all 0.3s ease;
}
/*.input-box input:focus,
.input-box input:valid{
  border-color: #4070f4;
}*/
.join-now .policy{
  display: flex;
  align-items: center;
}
.join-now h3{
  color: #707070;
  font-size: 14px;
  font-weight: 500;
  margin-left: 10px;
}
.input-box.button input{
  color: #fff;
  letter-spacing: 1px;
  border: none;
  background: #4070f4;
  cursor: pointer;
}
.input-box.button input:hover{
  background: #0e4bf1;
}
.join-now .text h3{
 color: #333;
 width: 100%;
 text-align: center;
}
.join-now .text h3 a{
  color: #4070f4;
  text-decoration: none;
}
.join-now .text h3 a:hover{
  text-decoration: underline;
}
.join-now .CheckBox input {
    width: 15px !important;
    height: 15px !important;
    margin-right:5px;
}
.join-now .box-height{
    height:30px!important;
}
.home {
    display: block;
    text-align: center;
    margin-top: 15px;
    text-decoration:none;
    font-weight:500;
}
.log-in-f{
    position:relative;
}
.log-in-f .eye-box {
    position: absolute;
    border: none;
    color: #58667e;
    font-size: 20px;
    font-family: "Barlow", sans-serif;
    font-weight: 400;
    border-radius: 100px !important;
    top: 32px;
    right: 0;
    padding: 0 12px;
}
@media (max-width: 768px) {
    .join-now .box-height{
        height:auto!important;
    }
    .wrapper{
        padding:20px;
    }
 
    /*.wrapper ul{
        margin-top: -42px;
        margin-left: -12px;
    }*/
}
