*, *::after,*::before{
    margin:0;
    padding:0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
    font-family: sans-serif;
}
body{
    background: blue;
    padding: 0 10px;
}.wrapper{
    max-width: 500px;
    width: 100%;
    background: #fff;
    margin: 20px auto;
    padding: 30px;
    box-shadow: 1px 1px 2px rgb(0, 0, 0,0.125);
    animation-name: moveinleft;
     animation-duration: 2s;
     animation-timing-function: ease-out;

}
.wrapper .title{
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 25px;
    color: blue;
    text-transform: uppercase;
    text-align: center;
}
.wrapper .form{
    width: 100%;
}
.wrapper .form .input-field{
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}
.wrapper .form .input-field label{
    width: 200px;
    color: rgba(0, 0, 0, 0.629);
    margin-right: 10px;
    font-size: 15px;
}
.wrapper .form .input-field .input,
.wrapper .form .input-field textarea{
    width: 100%;
    outline: none;
    border: 1px solid #d5dbd9;
    font-size: 15px;
    padding: 8px 10px;
    border-radius: 3px;
    transition: all 0.3s ease-in;
}
.wrapper .form .input-field textarea{
    resize: none;
    height: 150px;
}
.wrapper .form .input-field .custom-select{
    position: relative;
    width: 100%;
    height: 40px;
}
.wrapper .form .input-field .custom-select select{
    -webkit-appearance: none;
    appearance: none;
    border: 1px solid #d5dbd9;
    width: 100%;
    height: 100%;
    padding: 8px 10px;
    border-radius: 3px;
    outline: none;
}
.wrapper .form .input-field .custom-select:before{
    content: "";
    position: absolute;
    top: 12px;
    right: 12px;
    border: 8px solid;
    border-color: blue transparent transparent transparent;
    pointer-events: none;

}
.wrapper .form .input-field .input:focus,
.wrapper .form .input-field .textarea:focus,
.wrapper .form .input-field select:focus{
    border:1px solid blue
}
.wrapper .form .input-field p{
    font-size: 15px;
    color: #7575;
}
.wrapper .form .input-field .check{
    width: 15px;
    height: 15px;
    position: relative;
    display: block;
    cursor: pointer;
}
/* .wrapper .form .input-field .check input[type="checkbox"]{
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}
.wrapper .form .input-field .check .checkmark{
    width: 15px;
    height: 15px;
    border: 1px solid blue;
    position: relative;
    display: block;
}
.wrapper .form .input-field .check .checkmark:before{
    content: "";
    position: absolute;
    top: 1px;
    left: 2px;
    width: 5px;
    height: 2px;
    border: 2px solid;
    border-color: transparent transparent #fff #fff ;
    transform: rotate(-45deg);
    display: none;
}
.wrapper .form .input-field .check input[type="checkbox"]:checked ~ .checkmark{
    background: blue;
}
.wrapper .form .input-field .check input[type="checkbox"]:checked ~ .checkmark{
   display: block;
} */
.wrapper .form .input-field .btn{
    width: 100%;
    padding: 8px 10px;
    font-size: 15px;
    border: 0;
    background: blue;
    cursor: pointer;
    border-radius: 3px;
    outline: none;
}
.wrapper .form .input-field:last-child{
    margin-bottom: 0;
}
.wrapper .form .input-field  .btn:hover{
    background-color: rgb(33, 33, 250);
}
@keyframes moveinleft{
    0%{
     opacity: 0;
     transform: translateX(-20rem);
    }
    50%{
    opacity: 0.5;
    transform: translateX(3rem);
    }
    100%{
     opacity: 1;
     transform: translateX(0);
    }
}

@media (max-width:420px){
    .wrapper .form .input-field{
        flex-direction: column;
        align-items: flex-start;
    }
    .wrapper .form .input-field label{
        margin-bottom: 5px;

    }
    .wrapper .form .input-field .terms{
        flex-direction: row;
    }
}