*{
    margin: 0 auto;
    padding: 0;
    font-family: 'Montserrat';
    outline: none;
}
body{
    /* background: rgb(16,17,22);
    background: linear-gradient(135deg, rgba(16,17,22,1) 0%, rgba(19,19,26,1) 100%); */
    width: 100%;
    height: 100vh;
    background: url('../img/back.png');
    background-position: center;
    background-size: 100% 100%;
}
.container{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}
.form_wrapper{
    max-width: 400px;
    width: 90%;
    padding: 15px 25px 35px;
    box-sizing: border-box;
    border-radius: 15px;
    position: relative;
}
form{
    position: relative;
    width: 100%;
    height: 100%;
}
.form_wrapper h1{
    font-weight: 400;
    color: white;
    text-transform: uppercase;
    text-align: center;
    font-size: 30px;
    margin-bottom: 15px;
}
.form_wrapper h3{
    text-align: center;
    font-weight: 400;
    font-size: 18px;
    color: white;
    margin-bottom: 10px;
}
.input_wrapper{
    width: 100%;
    position: relative;
}
.form_wrapper input{
    width: 100%;
    height: 50px;
    padding: 10px 20px 10px 50px;
    box-sizing: border-box;
    background: none;
    border: none;
    border-radius: 5px;
    margin-bottom: 15px;
    font-size: 15px;
    color: white;
    transition: 0.6s;
    background: rgba(0, 0, 0, 0.45);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}
input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus
input:-webkit-autofill, 
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  border: 0;
  font-family: 'Montserrat';
  -webkit-text-fill-color: white;
  /* -webkit-box-shadow: 0 0 0px 1000px transparent inset; */
  transition: background-color 5000s ease-in-out 0s;
  background: -webkit-linear-gradient(top,  rgba(255,255,255,0) 0%,rgba(0,174,255,0.04) 50%,rgba(255,255,255,0) 51%,rgba(0,174,255,0.03) 100%);  
}
.form_wrapper input::placeholder{
    color: white;
    transition: 0.2s;
}
.form_wrapper input:focus{
    color: white;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}
.form_wrapper input:focus::placeholder{
    color: white;
}
.center{
    width: 50px;
    height: 50px;
    position: absolute;
    left: 0;
    display: flex;
    align-items: center;
}
svg{
    color: white;
}
button{
    width: 100%;
    height: 50px;
    padding: 10px 0;
    margin-top: 25px;
    background: rgba(0, 0, 0, 1);
    border: none;
    font-size: 15px;
    border-radius: 5px;
    transition: 0.2s;
    font-weight: 500;
    /* box-shadow: rgba(0, 0, 0, 0.5) 0 0 20px; */
    display: flex;
    align-items: center;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.6);
}
button::before{
    content: '';
    width: 0%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(-90deg, rgba(0,201,255,1) 21%, rgba(146,254,157,1) 82%);
    border-radius: 5px;
    transition: 0.6s;
    opacity: 0;
}
button:hover::before{
    width: 110%;
    opacity: 1;
}
p{
    color: white;
    text-align: center;
    z-index: 2;
    transition: 0.5s;
    font-weight: 600;
}
button:hover p{
    color: black!important;
}
.btn_wrapper{
    position: relative;
}
.btn_wrapper div{
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 3;
}
@media (max-width: 650px){

}
@media (max-width: 350px){
    /* .form_wrapper h1{
        font-size: 20px;
    } */
    .form_wrapper{
        padding: 0;
    }
}