body {
    /* background-image: url('../assets/images/grayPolygon.png'); */
    background-color: #202020;
    height: 80vh;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    font-weight: bold;
    overflow-x: hidden;
    /* makes the navigation above */
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    z-index: 0;
}

.login {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    transition: 2s ease;
    /* make it lower down the screen */
 

}

.login-header h1 {
    color: white;
    font-family: 'Roboto', sans-serif;
}

.box1 {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 600px;
    height: 300px;
    border-radius: 4px;
    background-color: #202020;
    text-align: center;
    margin: 20px;
    transition: 0.3s;
    border: 1px solid #fff;
    border-radius: 14px;
    outline: none;
    color: white;
    transition: 2s ease;
}

.errorMsg {
    font-family: 'Roboto', sans-serif;
    font-weight: bold;
    color: red;
    font-size: 1.2em;
}

.login-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 75%;
    transition: 2s ease;
}

.login-body {
    margin-top: 2vh;
    width: 80%
}

a:visited {
    color: white;
    text-decoration: none;
}

a {
    color: white;
    text-decoration: none;
    cursor: pointer;
    font-family: 'Roboto', sans-serif !important;
}

.form-group input {
    width: 80%;
    height: 30px;
    border: none;
    border-bottom: 1px solid white;
    background-color: transparent;
    color: white;
    font-size: 20px;
    font-weight: normal;
    margin: 5px;
    text-align: center;
}

.return {
    color: white;
    font-family: 'Roboto', sans-serif;
    font-weight: bold;
    font-size: 1.2em;
    margin-top: 10px;
    cursor: pointer;
}

.logo_div{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 20%;
    height: auto;
    margin-top: 10vh;

}


.logo_div img{
    width: 100%;
    height: auto;
    margin-top: 10vh;
}


.logo_login{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: 10px;
    margin-bottom: 10px;

}

h1{
    font-family: 'Roboto', sans-serif;
    font-weight: bold;
    color: white;
    font-size: 2em;
    margin-top: 10px;
    margin-bottom: 10px;
    text-align: center;
}

@media screen and (max-width: 600px) {
    .box1 {
        width: 95%;
        height: 95%;
        transition: 2s ease;
    }
    .login-header h1 {
        font-size: 30px;
    }
}

@media screen and (max-width: 500px) {
    .box1 {
        width: 98%;
        transition: 2s ease;
    }
    .login-header h1 {
        font-size: 25px;
    }

    .login{
        width: 100%;
    }
}


/* when the screen is bigger than 1200px change the logo size so its constant*/
@media screen and (min-width: 1200px) {
    .logo_div img{
        width: 250px !important;
        height: auto;
    }
}
