@import url('https://fonts.googleapis.com/css?family=Roboto:100,300,400,700');



/************ Start Main Rules **************/
*{
  margin: 0;
  padding: 0;
  outline: none;
  box-sizing: border-box;
/*   font-family: 'Roboto', sans-serif; */font-family: 'Raleway', sans-serif;
}

body{background: #191919  }

.main-box{
  position: relative;
  display: block;
  width: 90%;
  height: 700px;
  margin: 50px auto;
  border-radius: 8px;
  background:linear-gradient(to right, #293a4a, #293a4a);
}

.lined-link{
  position: relative;
  text-decoration: none;
  transition: all 0.2s linear
}
#button_login:hover, #button_login:focus, .form-btn:hover,
 .form-btn:focus{
    color:#fff !important;
}
.lined-link:hover{
  opacity: 0.5
}

.lined-link:after {
  position: absolute;
  content: "";
  width: 100%;
  left: 0;
  bottom: -2px;
  border: none;
  border-bottom: 1px solid #63d5c4;
}

/************ Start Slider Container **************/
.slider-cont,
.form-cont{
  width: 50%;
  height: 100%;
  float: left;
}

.slick-slide,
.slick-slider{
  width: 100%;
  height: 100% 
}

.clear-fix{
  clear: both;
}

.slick-dots {
  position: absolute;
  bottom: 10px;
  display: block;
  width: 100%;
  padding: 0;
  list-style: none;
  text-align: center;
}

.slick-dots li {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  margin: 0 3px;
  padding: 0;
  cursor: pointer;
}
.slick-dots li button {
  font-size: 0;
  display: block;
  width: 10px;
  height: 10px;
  padding: 5px;
  cursor: pointer;
  border: 0;
  outline: none;
  background: #8dffea;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.slick-dots li.slick-active button{
  background-color: #53C5B9;
  transform: scale(1.6);
  box-shadow: 0 0 10px #1b1b1b
}

.img-txt{
  position: relative;
}

.img-layer {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(47, 63, 85, 0.53);
}

.img-txt h1{
  position: absolute;
  display: block;
  top: 50%;
  color: #000;
  width: 100%;
  padding: 50px 0;
  font-size: 45px;
  font-weight: 100;
  text-align: center;
  transform: translateY(-50%);
  background-color: transparent;
}

/************ Start Form Container **************/

.top-buttons {
  position: relative;
  display: block;
  width: 100%;
  height: 15%;
  padding: 25px 0 25px 0;
  text-align: center;
}

.top-buttons button {
  color: #cacaca;
  border: none;
  margin: -2px;
  padding: 10px;
  font-size: 14px;
  font-weight:bold;
  font-weight: 300;
  background: linear-gradient(135deg, #293a4a, #293a4a);
  cursor: pointer;
}

.top-buttons button:nth-child(1) {
  border-radius: 50px 0 0 50px;
}

.top-buttons button:nth-child(2) {
  border-radius: 0 50px 50px 0;
}

.top-active-button {
  color: #fff !important;
  box-shadow: 0 0 20px #fff;
  background: linear-gradient(135deg, rgb(90, 84, 198), #5bb3c7);
  transition: all 0.3s ease;
}

#button-verify-otp, #button-resend-otp{
    border-radius: 25px;
    outline: none;
    border: none;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    margin: 1rem 0;
    cursor: pointer;
    transition: .5s;
    background-color: gray !important;
    padding: 14px;
    width:100%;
    font-size: 15px;
}

.form-cont div.form_content{
    width: 32%;
    height: auto;
    padding: 27px;
    margin: 15px auto;
    border-radius:27px;
}

.form form {
  width: 100%;
  height: 100%;
}

.form form 
label,
input[type="text"],
input[type="email"],
input[type="password"] {
  display: block;
}

.form form label {
  color: #000;
  font-size: 16px;
  font-weight: 300;
  margin: 6px 0;
}

p.terms {
  color: #9E9E9E;
  margin-bottom: 60px;
}

.form form 
input[type="text"],
input[type="email"], 
input[type="password"] {
  color: #000;
  width: 100%;
  border: none;
  font-size: 16px;
  font-weight: 200;
  margin-bottom: 27px;
  padding: 5px 0 10px 0;
  background: transparent;
  border-bottom: 1px solid #4c5c72;
}

.form form input::placeholder{
  color: #cecece;
}

.form form a {
  color: #000;
}

input.form-btn{
  color: #fff;
  font-size: 18px;
  font-weight: 300;
  padding: 12px 55px;
  margin-right: 20px;
  border: none;
  cursor: pointer;
  border-radius: 35px;
  transition: all 0.3s linear;
  box-shadow: 0 0 40px #fff;
}

input.form-btn:hover{
  box-shadow: none
}

.form-signup{
  display: none;
}
@media screen and (min-width:600px) and (max-width:1100px){
    .form-cont div.form_content {
      width: 53%;
      padding: auto;
      margin: auto;
    }
}
@media screen and (min-width:280px) and (max-width:590px){
    .form-cont div.form_content {
      width: 100%;
      height:auto;
      padding: 20px;
      margin: auto;
    }
}