body {
    background-color: #2E7572;
    font-family: poppins, serif; 
    font-size: 16px;
    color: #435060;
}

a {
    font-size: 15px;
    color:coral;
    display: inline-block;
    margin-top: 5px;    
}

h5 {
    margin-top: 0;
    margin-bottom: 5px;
    text-align: center;
    display:inline-block;
    font-size: 18px;
    color: red;
}

input[type=text]:focus,
input[type=password]:focus
{
    -webkit-box-shadow: 0px 0px 10px 2px rgba(204,204,204,0.9);
    -moz-box-shadow: 0px 0px 10px 2px rgba(204,204,204,0.9);
    box-shadow: 0px 0px 10px 2px rgba(204,204,204,0.9);
    border: 2px solid #a5cda5;
    background-color: #e9f3e9;
    color: #428c42;
}

input[type=text]:hover,
input[type=password]:hover
{
    -webkit-box-shadow: 0px 0px 10px 2px rgba(204,204,204,0.9);
    -moz-box-shadow: 0px 0px 10px 2px rgba(204,204,204,0.9);
    box-shadow: 0px 0px 10px 2px rgba(204,204,204,0.9);
    border: 2px solid #a5cda5;
    background-color: #e9f3e9;
    color: #428c42;    
}

input[type=submit]:focus
{
    -webkit-box-shadow: 0px 0px 15px 5px rgba(204,204,204,0.9);
    -moz-box-shadow: 0px 0px 15px 5px rgba(204,204,204,0.9);
    box-shadow: 0px 0px 15px 5px rgba(204,204,204,0.9);
}

input[type=submit]:hover
{
    background-color: #3F9794;
    font-weight: bold;   
    cursor:pointer;
}

#login {
    position: absolute;
    top: 20%;
    left: 20%;
    width: 205px;
    padding: 10px;
    margin-left: auto;
    margin-right: auto;    
    border: 2px solid #435060;
    background-color: white;
    box-shadow: 12px 12px 32px -7px #F1B828;
    border-radius: 10px 10px 10px 10px;
}

input[type=text],
input[type=password]
{
    width: 200px;
    background-color: #efefef;
    color: #666;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 15px;
    padding: 5px;
    box-sizing: border-box;
    outline: none;
    margin-top: 5px;
}

input[type=submit]
{
    width: 200px;
    background-color: #2E7572;
    font-size:20px;
    color: #F1B828;
    padding: 15px 10px;
    margin-top: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    letter-spacing: 2px;
    outline: none;
}


#unipack_logo {
    background-image: url("../img/UniPack_logo_color_mobile.png");
    width: 200px;
    height: 41px;
}


@media only screen and (min-width: 768px) {

#unipack_logo {
    background-image: url("../img/UniPack_logo_color.png");
    width: 984px;
    height: 204px;
}

#login {
    border-radius: 120px 0px 20px 20px;
    top: 25%;
    left: 30%;

}


}