*{
    box-sizing: border-box;
}

body{
    margin: 0;
    padding: 0;
    font-family: 'Arial', Georgia, 'Times New Roman', Times, serif;
}

@media (min-width: 600px){
    body{
    }
    .middle{
        text-align: center;
    }
}

.navbar{
    height: 10vh;
    width: 100%;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 30px;
    box-sizing: border-box;
}

.nav2 a{
    text-decoration: none;
    color: rgb(27, 118, 255);
    font-weight: bold;
}

.middle-form-container{
    height: 75vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

#root{
    width: 100%;
}

.middle-form{
    width: 62%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer{
    height: 13vh;
    height: 200px;
    width: 100%;
    box-sizing: border-box;
    font-size: 14px;
    padding: 10px 40px;
    display: flex;
    align-items: center;
}

.footer-link-line{
    color: #fff;
}

.footer-img{
    height: 40px;
    width: 100px;
    margin: 8px auto;
    display:flex; 
    justify-content: center; 
    align-content: center;
}

.submitForm{
    width:80%;
    /* width:500px; */
}


.input-field input{
    display: block;
    width: 100%;
    border-radius: 5px;
    border: thin solid grey;
    font-size: 16px;
    padding: 15px;
    margin: 10px auto 20px auto;
}


.submitForm button{
    background-color: rgb(27, 118, 255);
    border: 2px solid rgb(27, 118, 255);
    width: 100%;
    color: white;
    padding: 10px;
    border-radius: 7px;
    font-size: 14px;
    margin-top: 30px;
}

.navbar img{
    margin-left: -8px;
}

.neutral-link{
    color: black;
    padding: 10px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 16px;
    margin-top: -15px;
    border: 2px solid black;
    text-decoration: none;
}

.checkbox input[type=checkbox]{
    width: 20px;
    height: 20px;
}

@media (max-width: 600px){
    .middle-form{
        width: 95%;
    }
    .submitForm{
        width: 99%;
    }
    .submitForm button{
        width: 100%;
        
    }
    .middle{
        text-align: left;
    }
    .navbar, .footer{
        padding: 5px 20px !important;
    }
}

.error-message{
    width: 100%;
    padding: 7px;
    box-sizing: border-box;
    background-color: #ffd5d7;
    border-left: 3px solid red;
    text-align: center;
    font-size: 15px;
}

.hide{
    display: none;
}