*{
    font-family: 'Fira Code';

}
body{
    background-image: linear-gradient(to right, #f09ecd, #e19fd7, #cfa1df, #bba3e5, #a5a5e8, #93aef1, #7eb7f6, #69bff8, #52cffe, #41dfff, #46eefa, #5ffbf1);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
}

.box{
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 90vh;
}
.container{
    width: 350px;
    display: flex;
    flex-direction: column;
    padding: 0 15px 0 15px;

}
span {
    color: white;
    font-size: small;
    display: flex;
    justify-content: center;
    padding: 10px 0 10px 0;

}
header{
    color: white;
    font-size: 30px;
    display: flex;
    justify-content: center;
    padding: 10px 0 10px 0;
}
.input-field{
    display: flex;
    flex-direction: column;
    margin: 15px;
}
.input{
    height: 45px;
    width: 87%;
    border: none;
    outline: none;
    color: white;
    border-radius: 30px;
    padding: 0 0 0 45px;
    background: rgba(255, 255, 255, 0.1);
}
i{
    position: relative;
    top: -33px;
    left: 90%;
    width: 25px;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    transition: .3s;
    outline: none;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: box-shadow, transform;
    transition-property: box-shadow, transform;
}
i:hover{
    -webkit-transform: scale(1.1);
    transform: scale(1.4);
    

}
::-webkit-input-placeholder{
    color: #fff;
    font-weight: bold;

}
.submit{
    border: none;
    border-radius: 30px;
    outline: none;
    height: 45px;
    font-size: 15px;
    width: 100%;
    background: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: .3s;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: box-shadow, transform;
    transition-property: box-shadow, transform;
}
.submit:hover{
    box-shadow: 0 0 15px rgba(0,0,0,0.5);
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}
::-webkit-validation-bubble-message{
    background-color: #bba3e5;
}
