.wrapper{
    height: 100vh;
}

.undernav{
    display: flex;
    flex-direction: column;
    height: 85%;
    justify-content: center;
    align-items: center;
}

.errormessage{
    font-size: 18px;
    color: #F00;
    margin-bottom: 10px;
}

.title{
    margin-top: 0;
    margin-bottom: 25px;
    font-size: 40px;
    color: rgb(255, 187, 0);
    font-family: Georgia, 'Times New Roman', Times, serif;
}

form{
    width: 100%;
    text-align: center;
}

.formcontrol{
    width: 60%;
    margin-bottom: 30px;
    font-size: 20px;
    padding: 7px;
    border: none;
    border-bottom: solid;
    border-color: rgba(255, 187, 0);
    outline: none;
    font-family: Georgia, 'Times New Roman', Times, serif;
}

.formsubmit{
    width: 30%;
    padding: 10px;
    background-color: rgba(255, 187, 0);
    border-style: solid;
    border-color: rgba(255, 187, 0);
    border-width: 3px;
    margin-bottom: 20px;
    font-size: 18px;
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-weight: bold;
    color: rgb(255, 255, 255);
}

.formsubmit:hover{
    background-color: rgb(255, 255, 255);
    border-style: solid;
    border-width: 3px;
    color: rgb(255, 187, 0);
    transition: 0.3s;
    cursor: pointer;
}
