body {
    font-family: 'Open Sans', sans-serif !important;
    background-image: linear-gradient(147deg, #005772 0%, #006180 74%);
    background-image: url('login.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom;
    background-position-y: -30vh;
    width: 100vw;
    height: 100vh;
}

.login {
    margin-top: 100px;
}
.titulos h4{
    font-size: 2.3em !important;
}

.titulos h1{
    font-size: 3.5em !important;
}

.titulos h5{
    font-size: 1em !important;
}

input {
    background-color: transparent;
    border: 1px solid white;
    border-radius: 20px;
    padding: 10px;
    padding-left: 30px;
    color: white;
    width: 300px;
    margin-top: 20px;
}

input:focus {
    outline: none;
}

button {
    background-color: transparent;
    border: 1px solid transparent;
    border-radius: 20px;
    padding: 10px;
    width: 300px;
    margin-top: 20px;
    font-weight: bold;
    font-size: 19px;
}

::placeholder {
    color: white !important;
}

@media only screen and (max-width: 1024px) {

    body{
        background-size: auto;
        background-position: center;
    }

    .login{
        padding: 30px;
        margin: auto;
    }

    .titulos h4{
        font-size: 2em !important;
    }
    
    .titulos h1{
        font-size: 3em !important;
    }
    
    .titulos h5{
        font-size: 1em !important;
    }
  }


@media only screen and (max-width: 425px) {

    body{
        background-size: auto;
        background-position: center;
    }

    .login{
        padding: 10px;
        margin-top: 50px;
        margin-left: auto;
        margin-right: auto;
    }

    .titulos{
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }

    input, button{
        margin-left: auto;
        margin-right: auto;
    }

    .titulos h4{
        font-size: 1em !important;
    }
    
    .titulos h1{
        font-size: 2em !important;
    }
    
    .titulos h5{
        font-size: 1em !important;
    }
  }