
form {
    width: 100%;
    height: 100%;
    display: flex;
    margin-top: auto;
    margin-bottom: 10rem;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 2rem;
    overflow: hidden;
    border-radius: 5px;
    border: 1px solid rgb(194, 71, 71);
    text-align: center;
    box-shadow: 0 0 25px rgba(0,0,0,0.6);
} 
.container {
    display: flex;
    align-items: center;
    width: 85%;
    height: 45rem;
    margin-top: 5rem;
    margin-bottom: 5rem;
}

.ff-button-bar button {
    border-radius: 7px;
    color: white;
    background-color: rgb(194, 71, 71);
}
label {
    text-align: left;
    margin: 5px;
    margin-left: 0;
    align-self: flex-start;
    display: inline-block;
}
input {
    display: inline-block;
    color: white;
    width: 100%;
    height: 3rem;
    padding-left: 1.5rem;
    background-color: rgba(255, 255, 255, 0.171);
}
input:focus{
    background-color: white;
    color: black;
    border: 2px solid rgb(150, 50, 50);
}
h2 {
    display: inline-block;
    font-size: 3rem;
}
input#button-submit {
    width: 60%;
    height: 5rem;
    border-radius: 10px;
    margin-top: 1.5rem;
    font-weight: bold;
    background-color: rgb(194, 71, 71);
    color: white;
    cursor: pointer;
}
input#button-submit:hover {
    background-color: rgb(133, 47, 47);
}
button {
    width: 100%;
}
@media screen and (max-width:780px){
    .container {
        width: 100%;
    }
}