*{
    box-sizing: border-box;
}

body{
    margin: 0;
    padding: 0;
    font-family: 'Lato', sans-serif;
    font-size: 14px;
}

h1, h2, h3, h4, h5, h6{
    margin: 0;
}

p{
    margin: 0;
    padding: 0;
}

.green-box{
    display: block;
    height: 40px;
    width: 100%;
    background-color: rgb(82, 169, 40);
}

.logo-center{
    display: block;
    margin: 0 auto;
    width: 400px;
    height: auto;
}

.blue-box{
    height: 30px;
    width: 100%;
    background-color: rgb(0, 59, 90);
}

.support-area{
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    height: 50px;
    width: 100%;
}

.support-area div{
    padding: 5px;
}

.support-area img{
    height: 20px;
    width: auto;
}

.support-area:last-child{
    padding-right: 25px;
}

.support-area a{
    text-decoration: none;
    color: #000;
    font-size: 15px;
}

.support-area a:hover{
    text-decoration: underline;
    color: rgb(82, 169, 40);
}

.reset-container{
    display: block;
    height: 360px;
    width: 325px;
    margin: 10px auto;
    text-align: center;
}

.reset-headline{
    font-size: 20px;
    padding: 30px 0;
    color: rgb(0, 59, 90);
}

.reset-info-text{
    font-size: 15px;
    color: rgb(0, 59, 90);
}

.reset-container input{
    width: 85%;
    height: 30px;
    font-size: 15px;
}

.reset-submit-button{
    margin: 15px 0;
    font-size: 15px;
    background: rgb(0, 59, 90);
    color: #fff;
    border: none;
    border-radius: 2px;
    width: 85px;
    height: 30px;
}

.reset-info-text-small{
    font-size: 15px;
    color: rgb(0, 59, 90);
}

.reset-info-text-small a{
    text-decoration: underline;
    color: #000;
}

.reset-info-text-small a:hover{
    color: rgb(82, 169, 40);
}

.support-area-mobile{
    display: none;
}





@media only screen and (max-width: 600px){
    
    .green-box{
        height: 30px;
    }

    .logo-center{
        width: 300px;
    }

    .blue-box{
        height: 20px;
    }

    .support-area{
        display: none;
    }








    .support-area-mobile{
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        height: 50px;
        width: 100%;
    }

    .support-area-mobile div{
        padding: 5px;
    }
    
    .support-area-mobile img{
        height: 20px;
        width: auto;
    }

    .support-area-mobile a{
        text-decoration: none;
        color: #000;
        font-size: 15px;
    }



    
}

@media only screen and (max-width: 340px){
    .reset-container{
        margin: 20px auto;
    }
}