@import url('https://fonts.googleapis.com/css2?family=Mynerve&display=swap');
body {
    background-color: #00aaffd2;
    color: #fff;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.brand{
    text-align: center;
    margin-top: 3rem;
    font-size: 3rem;
    margin-bottom: 2px;
    font-family: 'Mynerve', cursive;
}

h2{
    text-align: center;
    margin-top: 0px;
    font-family: 'Mynerve', cursive;
}

#form-container {
    width: 90%;
    max-width: 600px;
    border-radius: 10px;
    background-color: #ffffff;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 10px 10px 20px rgba(55,55,55,0.6);
}


#form__container__header {
    border-radius: 10px 10px 0 0;
    padding:10px 30px;
    text-align: center;
    background-color: #ededed;
    color:#3f434a;
    margin: 0;
    font-size: 24px;
    font-size: 300;
    line-height: 0;
}

#form__content__wrapper {
    padding: 20px;
}

input {
    box-sizing: border-box;
    color: #3f434a;
    width: 100%;
    margin: 0;
    border: none;
    border-radius: 5px;
    padding: 16px 20px;
    font-size: 15px;
    background-color: #ededed;
    margin-top: 32px;
}


input[type='submit'] {
    background-color: #535353;
    color: #ffffff;
    transition: all 0.5s;
    
}
input[type='submit']:hover {
    background-color: #424242;
    cursor:pointer;
}

footer{
    position: absolute;
    bottom:5px;
    left:50%;
    transform: translate(-50%,-50%);
    display:flex;
    align-items: center;
    gap:10px;
    width:100%;
    justify-content: center;
}

footer img{
    width:40px;
}

footer a{
    color:#ededed;
    font-size: 20px;
    text-decoration: none;
}