@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');
*{
    font-family: 'figtree', sans-serif;
}
.wrapper{
    background-color: #f8f8f8;
    /* padding: 0 20px 0 20px; */
}
.main{
    display: flex;
    justify-content: center;
    align-items: center;
   min-height: 100vh;
}
.side-image{
    background-image: url("cssimg/Animation2.gif");
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    border-radius: 10px 0 0 10px;
    position: relative;
    padding: 60px;

}



.row{
  margin-top:30px;
  width:  900px;
  height:37em; 
  border-radius: 10px;
  background: #fff;
  padding: 0px;
  box-shadow: 5px 5px 10px 1px rgba(0,0,0,0.2);
}
.text{
    position: absolute;
    top: 50%;
    left: 56%;
    transform: translate(-50%, -50%);
}
.text p{
  color: #fff;
    font-size: 20px;
    font-weight: 700;
}
i{
    font-weight: 400;
    font-size: 15px;
}
.right{
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.input-box{
  width: 330px;
  box-sizing: border-box;
}
img{
    width: 35px;
    /* position: absolute; */
    top: 30px;
    left: 30px;
}
.input-box header{
    font-weight: 700;
    text-align: center;
    margin-bottom: 80px;
    font-size: 22px;
}
.input-field{
    display: flex;
    flex-direction: column;
    position: relative;
    padding: 0 10px 0 10px;
}
.input{
    height: 45px;
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    outline: none;
    color: #40414a;
}
.input-field{
    margin-bottom: 20px;
    position: relative;
}
/*.input-field label {
    position: absolute;
    top: 20px;
    left: 2ppx;
    color: #adadad;
    transform: translateY(-50%);
    font-size: 16px;
    pointer-events: none;
    transition: .3s;
}
*//*.input-field input:focus+label, .input-field input:not(:placeholder-shown)+label {
    top: 0px;
    color: #0170C1;
}
*//*
.input-box .input-field label{
    position: absolute;
    top: 10px;
    left: 10px;
    pointer-events: none;
    transition: .5s;
}

.input-field input:focus ~ label
   {
    top: -10px;
    font-size: 13px;
  }*/
  /*.input-field input:valid ~ label
  {
   top: -10px;
   font-size: 13px;
   color: #5d5076;
 }*/
 /*.input-field .input:focus, .input-field .input:valid{
    border-bottom: 1px solid #743ae1;
 }*/
 button {
   
    width: 95%;
    margin: 0px;
    padding: 10px 6px;
    background-color: #fff;
    border: 1px solid #d8d8d8;
    border-radius: 2px;
     margin-left: 80px;
    text-overflow: ellipsis;
    font-size: 17px;
    -webkit-transition: border-color 0.2s ease;
    transition: border-color 0.2s ease;
    text-align: left;
    color: #484848;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none
}
 .submit{
    border: none;
    outline: none;
    height: 45px;
    background: black;
    color: white;
    /*background: #ececec;*/
    border-radius: 5px;
    transition: .4s;

 }
 .submit:hover{
    background: rgb(90, 90, 90);
    /*background:#ececec;*/
    /*background: rgba(37, 95, 156, 0.937);*/
    color: white;
 }
 .back{
    border: none;
    outline: none;
    height: 45px;
    background: #636363;
    color: white;
    /*background: #ececec;*/
    border-radius: 5px;
    transition: .4s;
 }
  .back:hover{
    background: #eb335d;
    /*background:#ececec;*/
    color: #fff;
 }
 .signin{
    text-align: center;
    font-size: small;
    margin-top: 25px;
}
span a{
    text-decoration: none;
    font-weight: 700;
    color: #000;
    transition: .5s;
}
span a:hover{
    text-decoration: underline;
    color: #000;
}
@media only screen and (max-width: 768px){
    .side-image{
        border-radius: 10px 10px 0 0;
    }
    img{
        width: 35px;
        /* position: absolute; */
        top: 20px;
        left: 47%;
    }
    .text{
        position: absolute;
        top: 70%;
        text-align: center;
    }
    .text p, i{
        font-size: 16px;
    }
    .row{
        max-width:420px;
        width: 100%;
        height: 45em;
    }
}
label{
/*        font-size: larger;*/
    font-weight: 600;
}