@import url('https://fonts.googleapis.com/css?family=Poppins');


*{
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: #1A76D1;
}

.wrapper{
    position: relative;
    max-width: 430px;
    background: #fff;
    width: 100%;
    /*height: 60%;*/
    padding: 34px;
    /*padding: 70px;*/
    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;
    background: #1A76D1;
    
    border-radius: 12px;
    
    /*padding-bottom: 15px;*/
}

.wrapper h3{
    
    padding-top: 15px;
    padding-bottom: 15px;
}

.wrapper h4{
    color: #1A76D1;
   padding-bottom: 15px;
}

.wrapper form{

    margin-top: 30px;
    
    margin-bottom: 60px;

}

.wrapper form .input-box{

    height: 52px;
    margin: 18px 0;
}

.wrapper .input-box{

    height: 52px;
    margin: 18px 0;
}
/*
.wrapper .non-input-box{

    height: 52px;
    margin: 18px 0;
}
*/

form .input-box input{

    height: 100%;
    width: 100%;
    padding: 0 15px;
    outline: none;
    font-size: 17px;
    font-weight: 400;
    color: #333;
    border: 1.5px solid #c7bebe;
    border-bottom-width: 2.5px;
    border-radius: 6px;

}

.input-box button{

height: 52px;
   /* margin: 18px 0;*/
    height: 100%;
    width: 100%;
    
    padding: 0 15px;
    outline: none;
    font-size: 17px;
    font-weight: 400;
    color: #333;
    border: 1.5px solid #c7bebe;
    border-bottom-width: 2.5px;
    border-radius: 6px;

}

/*
.non-input-box input {
    
    height: 100%;
    width: 100%;
    padding: 0 15px;
    outline: none;
    font-size: 17px;
    font-weight: 400;
    color: #333;
    border: 1.5px solid #c7bebe;
    border-bottom-width: 2.5px;
    border-radius: 6px;

    
}
*/

.input-box input:focus,
.input-box input:valid{

    border-color: #1A76D1;
}

.input-box button:focus,
.input-box button:valid{

    border-color: #1A76D1;

}

.box{
    
    display: flex;
}

.input-box input[type="checkbox"] {
    
    height: 20px;
    
    width: 20px;
    
}

.box a {
  color: #1A76D1;
}



/*
.non-input-box input:focus,
.non-input-box input:valid{

    border-color: #1A76D1;
}

.non-input-box button:focus,
.non-input-box button:valid{

    border-color: #1A76D1;

}

*/




/* Hide the browser's default checkbox 
.container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}*/

/* Create a custom checkbox
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
} */

/* On mouse-over, add a grey background color 
.container:hover input ~ .checkmark {
  background-color: #ccc;
}*/

/* When the checkbox is checked, add a blue background 
.input-box input:checked ~ .checkmark {
  background-color:  #1A76D1;
}*/

/* Create the checkmark/indicator (hidden when not checked) 
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}*/

/* Show the checkmark when checked 
.input-box input:checked ~ .checkmark:after {
  display: block;
}*/

/* Style the checkmark/indicator 
.input-box .checkmark:after {
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
*/


form .policy{
    display: flex;
    align-items: center;
}

form h3{
    color: #707070;
font-size: 14px;
font-weight: 500;
margin-left: 10px;
}

form h4{
    color: #1A76D1;

}

 .input-box.button input{
color: #fff;
letter-spacing: 1px;
border: none;
background: #1A76D1;
cursor: pointer;
}

.input-box.button input:hover{
    
    background: #0e4bf1;
    
    }
    
     .input-box.button button{
        /*height: 52px;*/
        color: #fff;
        letter-spacing: 1px;
        border: none;
        background: #1A76D1;
        cursor: pointer;
        }

.input-box.button button:hover{
    
    background: #0e4bf1;
    
    }
    
   /* 
    .non-input-box.button input{
color: #fff;
letter-spacing: 1px;
border: none;
background: #1A76D1;
cursor: pointer;
}

.non-input-box.button input:hover{
    
    background: #0e4bf1;
    
    }
    
     .non-input-box.button button{
        color: #fff;
        letter-spacing: 1px;
        border: none;
        background: #1A76D1;
        cursor: pointer;
        }

.non-input-box.button button:hover{
    
    background: #0e4bf1;
    
    }
*/


form .text h3{

    color:#333;
    width: 100%;
    text-align: center;
}

form .text h3 a{

    color:#1A76D1;
   
    text-decoration: none;
}


form .text h3 a:hover{

    text-decoration: underline;
}

