/* ------- CONIFA LOG IN PAGE -------- */

/* ------ Styling ------ */

#login {
    font-family: 'Open Sans', sans-serif;
    color: #122C44;
    position: relative;
}

#login h1 a {
    background-image: url('/en/wp-content/uploads/2021/05/Logo.svg');
    width: 100%;
    background-size: auto;
}

.login #login_error, .login .message, .login .success {
    border-left: 4px solid #1BA7E0;
    box-shadow: none;
    background-color: inherit;
}

.login #login_error a {
    color: #1BA7E0;
    font-weight: bold;
    text-decoration: inherit;
}

#loginform {
    border: none;
    border-radius: 5px;
    box-shadow: 0 0 15px rgb(18 44 68 / 10%);
    padding: 1rem 1rem 2rem;
}
#loginform:after,
#lostpasswordform:after {
    content: "";
    background: url(/en/wp-content/uploads/2021/05/dots_shape_blue-1.svg);
    background-size: 7rem;
    background-repeat: no-repeat;
    width: 7rem;
    height: 7rem;
    position: absolute;
    bottom: 7rem;
    right: -3rem;
    z-index: -1;
}

#loginform input[type=text],
#loginform input[type=password] {
    background-color: inherit;
    font-size: 1.2rem;
}

.login input[type=submit] {
    border-radius: 25px;
    border-width: 0;
    background: linear-gradient(to right, #1ba7e0, #25d9ea);
}

#loginform input[type=submit]:hover {
    background: #25d9ea;
}

#loginform input:focus {
    border-color: #1BA7E0;
    /* border: none; */
}

.login #nav a {
    color: #1BA7E0;
}

.login .privacy-policy-link {
    color: #1BA7E0;
}

.login #lostpasswordform {
    border: none;
    border-radius: 5px;
    box-shadow: 0 0 15px rgb(18 44 68 / 10%);
    box-shadow: none;
}

@media only screen and (max-width: 499px) {
    #loginform,
    #lostpasswordform {
        margin: 0 1rem;
    }
    #loginform:after,
    #lostpasswordform:after {
        background-size: 3rem;
        width: 3rem;
        height: 3rem;
        bottom: 8.5rem;
        right: 0rem;
        overflow: hidden;
    }
}