﻿/*    MEDIA QUERIES */
@media only screen and (min-device-width: 375px) and (max-device-width: 991px) {
    .login-img-2019 img {
        width: 330px;
    }

    .navbar-toggler {
        display: none;
    }

    .div-login-main-2019 {
        margin: 0px auto;
        display: flex;
        flex-direction: column;
    }

    .login-up-2019 {
        margin: 0 auto;
    }

    .login-img-2019 img {
        width: 300px;
    }
}
/*   END MEDIA QUERIES */


.card {
    max-width: 400px;
}

body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
}

.showLogin {
    border: none;
    background: none;
    padding: 0;
    margin: 0;
    cursor: pointer;
}


.login-up-text {
    color: white;
}

.login-up-text {
    font-size: 18px;
    font-family: 'Open Sans', sans-serif;
}

.login-img-2019 img {
    width: 360px;
}

.password-toggle-icon {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    cursor: pointer;
}

    .password-toggle-icon i {
        display: none;
    }

    .password-toggle-icon i {
        font-size: 18px;
        line-height: 1;
        color: #333;
        transition: color 0.3s ease-in-out;
    }

        .password-toggle-icon i:hover {
            color: #000;
        }

.separador-login-header {
    width: 15%;
    background-color: #118BCC;
    border: 2px solid #118BCC;
    border-radius: 2px;
}

.login-footer-2019 {
    margin-top: 12px;
    height: 25px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    font-family: 'Open Sans', sans-serif;
    font-size: 13px;
}

.form-label, .btn.btn-link, .btn.btn-primary {
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
}

.navbar-toggler {
    display: none;
}

.invalid-feedback {
    font-size: 12px
}

.card-title {
    font-size: 20px;
}

.modal.fade {
    transition: opacity 0.15s linear;
    position: fixed !important;
}

    .modal.fade.show {
        opacity: 1;
    }

    /* Se añade la clase .fade.out para el efecto de fundido al cerrar */
    .modal.fade.out {
        opacity: 0;
    }


#loginButton, #recuperarButton {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 34.6px;
    position: relative;
}

.loader {
    width: 1rem;
    height: 1rem;
    border: 2px solid #FFF;
    border-bottom-color: transparent;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
    margin-right: 5px;
}

#buttonText {
    line-height: 1;
}


@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
} 