/*** GENERAL ***/

html, body {
    width: 100%;
    height: 100%;
    margin: 0;
    font-family: -apple-system, "Roboto", sans-serif;
}

body {
    background-color: #fff;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.content {
    max-width: 650px;
    padding: 50px;
    box-sizing: border-box;
    transform: translate(0,-7%)
}


.logo img {
    margin: 0 auto;
    width:98%;
}

input.uj[type=submit]:hover {
    background-color: #426FB7;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

input.uj[type=submit]:hover + input.uj[type=email] {
    border-color: #436FB7;
}

@media only screen and (min-width: 320px) and (max-width: 991px) {

.content {
    max-width: 650px;
    padding:0;
    box-sizing: border-box;
    transform: translate(0,-7%)
}

   .logo img {
    margin: 0 auto;
    width:100%;
    padding: 0;
    }
    

}




















