.background {
    position: relative;
    height: 100vh;
}

.background::before {
    content: "";
    background-image: url(https://i.imgur.com/eH9ErgW.jpeg);
    height: 100vh;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.75;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: -1;
}

body {
    font-family: "Arial", sans-serif;
    color: #ffffff;
    margin: 0px;
    padding: 0%;
    border: 0%;
    display: flex;
    justify-content: center;
}

.container{
    display: flex;
    flex-direction: column;
    justify-content: center;
    justify-self: center;
}

.form-title{
    text-align: center;
    text-shadow: 2px 2px 5px #0000007b;
    color: #ffffff;
    font-size: 35px;
    font: bold;
    margin-top: 10px;
    margin-bottom: 20px;
}

.form-container{
    font-size: 30px;
    background-color: #B4CBE9;
    border-radius: 20px;
    padding: 30px;
    gap: 20px;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

input[type="email"] {
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
    background-color: #ffffffd3;
    border: none;
    border-radius: 4px;
    color: #707070;
    height: 70px;
    font-size: 100%;
    border-radius: 20px;
}

button {
    background-color:#f9f8f886;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    padding: 20px;
    margin-top: 50px;
    width: 50%;
    font-size: 30px;
    font-weight: bold;
    height: 70px;
    border-radius: 20px;
    align-self: center;
}

button:hover{
    background-color: #C6BFAB;
}

form{
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.input-error {
    font-weight: lighter;
    font-size: smaller;   
    color: rgb(172, 0, 0);
}
