body {
    font-family: montserrat, sans-serif;
    font-weight: 500;
    background-image: url("stacked-waves-haikei.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}
form {
    display: flex;
    align-items: center;
    justify-content: center;
}
.login {
    background-color: #D1D1D1;
    display: flex;
    flex-direction: column;
    width: 15rem;
    border-radius: 18px;
    height: 25rem;
    padding: 18px;
    margin-bottom: 260px;
    margin-top: 105px;
}
.email, .password {
    border: none;
    display: flex;
    flex-direction: column;
    margin-top: 15px;
    color: #413882;
    width: auto;
}

input[type="text"], input[type="email"], input[type="password"] {
    font-family: montserrat, sans-serif;
    font-weight: 500;
    border: solid 1px white;
    border-radius: 7px;
    background-color: #FFFFFF;
    color: black;
    height: 1rem;
    padding: 15px;
}
input::placeholder {
    color: black;
}
.button {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 25px;
}
#submitSignIn {
    border: none;
    border-radius: 5px;
    padding: 5px;
    width: 12rem;
    background-color: #0066FF;
    color: white;
    font-family: montserrat, sans-serif;
}
#submitSignIn:hover {
    transform: scale(1.1);
}