body{
    font-family: Poppins;
    background-color: rgba(200,200,200,1);
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 20vh !important;
}

.wrapper{
    width: 100vw !important;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
}

h1{
    color: white;
}

#logo{
    width: 15em;
}

form{
    font-family: Poppins;
    width:100%;
    text-align: center;
}

.form-input{
    font-family: Poppins;
    width: 60%;
    padding: 15px;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 5px;
    transition: all 250ms ease-in-out;
}

.form-input:focus{
    box-shadow: 5px 5px 10px rgba(0,0,0,0.2) !important;
}

input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  border-radius: 5px;
}

.buttonsDiv{
    width: 100%;
    text-align: center;
    margin-top: 30px;
}

.submitBtn{
    font-family: Poppins;
    font-weight: 900;
    background-color: #ed1d24;
    border: none;
    padding: 15px 20px;
    color: white;
    border-radius: 5px;
}