body {
    --var-color-azul: #0E121D !important;
    --var-color-watermelon: #FD4C4C !important;
    --var-color-darkblue: #0E121D !important;
    font-family: 'Montserrat', sans-serif !important;
    margin: 0;
}

.BarraSuperior {
    height: 70px;
    -webkit-box-shadow: 0px 4px 5px -3px rgb(185, 185, 185);
    -moz-box-shadow: 0px 4px 5px -3px rgb(185, 185, 185);
    box-shadow: 0px 4px 5px -3px rgb(185, 185, 185);
    margin-bottom: 5px;
    width: 100%;
}

.grid-container {
    width: 100%;
    min-height: 100vh;
    display: inline-grid;
    grid-template-columns: 55% 1fr;
    background-color: var(--var-color-darkblue);
}

.login-logo {
    background: url(../img/ohjazz-background.jpg);
    background-size: cover;
    background-position: top;
    background-color: white;
}

#logo {
    display: flex;
    justify-content: flex-start;
}

#logo img {
    margin-top: 5%;
    margin-left: 10%;
    max-width: 600px;
    width: 80%;
}

.login-form-container {
    color: var(--var-color-watermelon);
    display: flex;
    justify-content: center;
}
.login-form {
    width: 80%;
    margin-top: 10%;
}

.login-form a{
    color: white;
    text-decoration: none;
}

.Linguas {
    float: right;
    padding-right: min(10%, 150px);
    padding-top: 25px;
}

.BarraSuperior .Button-Language {
    display: inline;
    cursor: pointer;
    border-right: 2px solid #828080;
    padding-right: 15px;
    padding-left: 15px;
}

.BarraSuperior .Button-Language:last-child {
    border: none;
}

.input-login {
    margin-bottom: 2%;
}

.input-login input{
    width: 98%;
    border-width: 0;
    border-radius: 5px;
    height: 40px !important;
    padding: 1%;
}

/* Languajes */
#kc-locale {
    width: 180px;
}

#kc-locale ul {
    display: none;
    position: absolute;
    background-color: #fff;
    list-style: none;
    left: 0;
    top: 20px;
    min-width: 100px;
    padding: 2px 0;
    border: solid 1px #bbb;
}

#kc-locale:hover ul {
    display: block;
    margin: 0;
}

#kc-locale ul li a {
    display: block;
    padding: 5px 14px;
    color: #000 !important;
    text-decoration: none;
    line-height: 20px;
}

#kc-locale ul li a:hover {
    color: #4d5258;
    background-color: #d4edfa;
}
#kc-locale-dropdown {
    position: relative;
}

#kc-locale-dropdown a {
    color: white;
    background: 0 0;
    padding: 0 15px 0 0;
    font-weight: 300;
}

#kc-locale-dropdown a:hover {
    text-decoration: none;
}

a#kc-current-locale-link {
    display: block;
    padding: 0 5px;
}

/* Fin Languages */
.login-form-container h1 {
    color: var(--var-color-watermelon);
    font-size: 3.0rem;
    font-weight: bold;
    font-family: inherit;
    margin: 1rem 0;
}

.login-buttons-group {
    display: inline-grid;
    column-gap: 2%;
    grid-template-columns: repeat(2,50%);
    width: 100%;
}

.login-button {
    margin-top: 2%;
    padding: 10px 0;
    background-color: var(--var-color-watermelon);
    color: #ffffff;
    /*background-image: linear-gradient(to bottom, var(--var-color-azul) 0, var(--var-color-azul) 100%);*/
    background-repeat: repeat-x;
    border-color: var(--var-color-azul);
    border-radius: 5px;
    font-size: 1rem;
    font-weight: bold;
}

.login-button:hover {
    background-color: #434343;
    color: #ffffff;
    background-image: linear-gradient(to bottom, #434343 0, #434343 100%);
    border-color: #434343;
}

#registerlink {
    border-radius: 5px;
    background-color: transparent !important;
    border: 2px solid white;
    font-size: 14px;
    padding: 10px 0;
    color: #ffffff;
    background-image: linear-gradient(to bottom, transparent 0, transparent 100%);
    background-repeat: repeat-x;
    text-align: center;
    font-weight: bold;
    display: block;
}

#registerlink:hover {
    background-color: var(--var-color-verde);
    border-radius: 5px;
    text-align: center;
    color: #ffffff;
    background-image: linear-gradient(to bottom, var(--var-color-verde) 0, var(--var-color-verde) 100%);
    background-repeat: repeat-x;
    border-color: var(--var-color-verde);
    border: 2px solid var(--var-color-verde);
}

.login-pf-signup {
    margin-top: 2%;
}

.login-pf-signup:hover {
    
}

.login-enter-unregister {
    display: flex;
    justify-content: center;
    margin-top: 3%;
}

.login-enter-unregister a {
    text-decoration: underline;
}

.login-little-text {
    display: flex;
    justify-content: space-between;
}

 .login-reset-button, .login-reset-button input{
    width: 100%;
    margin-bottom: 2%;
}


@media (max-width: 1000px) {    
    .login-form-container h1 {
        font-size: 6rem;
    }
    .grid-container {
        grid-template-columns: 100% !important;
    }
    #logo {
        justify-content: center;
    }
    #logo img {
        margin-left: 0;
    }
    .login-little-text {
        flex-direction: column-reverse;
        font-size: 2rem;
        min-height: 120px;
    }
    .login-buttons-group {
        grid-template-columns: repeat(auto-fill,100%);
        column-gap: 0%;
    }
    .login-button, .login-pf-signup, #registerlink {
        font-size: 3rem;
    }
    .login-enter-unregister {
        font-size: 2rem;
        margin-top: 2%;
    }

    .input-login input{
        font-size: 3rem;
        height: 80px !important;
        padding: 2%;
        margin-top: 4%;
        width: 96%;
    }
    .login-pf-signup {
        margin-top: 4%;
    }
    #username, #password {
        font-size: 3rem !important;
    }

    #kc-form-options input[type="checkbox"] {
        width: 35px;
        height: 36px;
    }
}
