*{
    margin: 0 auto;
    padding: 0;
}
.wrapper{
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    background-color: rgb(238, 238, 238);
}
form{
    max-width: 400px;
    width: 90%;
    display: block;
    background-color: rgb(255, 255, 255);
    box-sizing: border-box;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 0 25px rgba(177, 177, 177, 0.658);
}
h1{
    text-align: center;
}
button{
    width: 100%;
}
.alert_wrapper{
    max-width: 400px;
    width: 90%;
    position: absolute;
    z-index: 2;
    top: 10px;
    left: 0;
    right: 0;
}
@media (max-height: 340px){
    .wrapper{
        height: 120vh;
    }
}