*{
    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: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    height: 35px;
    width: 100%;
    background-color: rgb(82, 169, 40);
}

.green-box h3{
    font-size: 1.5em;
    color: rgb(0, 59, 90);
}

.logo-center{
    display: block;
    margin: 0 auto;
    height: auto;
    width: 100%;
    max-width: 300px;
}

.blue-box{
    height: 20px;
    width: 100%;
    background-color: rgb(0, 59, 90);
}

.login-container{
    display: block;
    margin: 80px auto;
    width: 325px;
    /* height: 360px; */
    height: auto;
    background-color: rgb(0, 59, 90);
    border-radius: 10px;
    padding: 15px 0;
}

.login{
    text-align: center;
    padding: 25px 0;
    /* padding: 30px 0; */
    font-size: 30px;
    color: #fff;
}

.form-center{
    text-align: center;
}

#userbox{
    background-image: url('icons/splendiduser.png');
    background-repeat: no-repeat;
    background-size: 20px;
    /* Background-position: X akse & Y akse */
    /* background-position: 5px 10px; */
    background-position: 5px center;
    padding: 10px 10px 10px 30px;
}

#passwordbox{
    background-image: url('icons/lock.png');
    background-repeat: no-repeat;
    background-size: 20px;
    /* Background-position: X akse & Y akse */
    /* background-position: 5px 10px; */
    background-position: 5px center;
    padding: 10px 10px 10px 30px;
}

.input-style{
    margin: 5px 0;
    border: none;
    border-radius: 10px;
    outline: none;
    font-size: 16px;
    color: #000;
    width: 275px;
}

.button-style{
    margin: 15px 0;
    font-size: 15px;
    background-color: rgb(82, 169, 40);
    color: #fff;
    border: none;
    padding: 10px;
    border-radius: 5px;
    width: 275px;
    outline: none;
}

.button-style:hover{
    background-color: rgba(82, 169, 40, 0.8)
}

.forgot-password{
    color: #fff;
    text-decoration: none;
}

.forgot-password:hover{
    color: rgb(82, 169, 40);
}

.support-text{
    color: #fff;
    cursor: default;
    margin: 5px 0;
}

.language{
    display: flex;
    /* margin: 10px 0; */
    margin: 5px 0;
    flex-direction: row;
    width: 100%;
    justify-content: center;
}

.language img{
    height: auto;
    width: 30px;
    margin: 0 5px;
    opacity: 0.5;
}

.language img:hover{
    opacity: 1;
}

.success-message {
    color: rgb(82, 169, 40);
}


@media only screen and (max-width: 600px){

    .green-box{
        height: 30px;
    }

    .green-box h3{
        font-size: 1.2em;
    }

    .logo-center{
        width: 300px;
    }

    .blue-box{
        height: 20px;
    }

    .login-container{
        margin: 80px auto;
        width: 250px;
        /* height: 325px; */
        height: auto;
    }

    .login{
        font-size: 25px;
        padding: 25px 0;
    }

    .input-style{
        width: 200px;
        font-size: 12px;
    }

    .button-style{
        width: 200px;
        font-size: 12px;
    }

    .forgot-password{
        font-size: 12px;
    }

    .support-text{
        font-size: 12px;
    }

    .language img{
        width: 25px;
    }

}

@media only screen and (max-width: 340px){
    .login-container{
        margin: 50px auto;
    }
}