﻿/* RESET RULES
        –––––––––––––––––––––––––––––––––––––––––––––––––– */
:root {
    --lightgray: #efefef;
    --blue: steelblue;
    --white: #fff;
    --black: rgba(0, 0, 0, 0.8);
    --bounceEasing: cubic-bezier(0.51, 0.92, 0.24, 1.15);
}

.open-modal {
    font-weight: bold;
    color: var(--black);
    padding: 0.75rem 1.75rem;
    margin-bottom: 1rem;
    border-radius: 5px;
}

.close-modal {
    text-align: center;
    align-content: center;
    align-items: center
}


/* MODAL
        –––––––––––––––––––––––––––––––––––––––––––––––––– */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: var(--black);
    cursor: pointer;
    visibility: hidden;
    opacity: 0;
    transition: all 0.5s ease-in;
}

    .modal.is-visible {
        visibility: visible;
        opacity: 1;
    }

.modal-dialog {
    position: relative;
    max-width: 110vh;
    max-height: 90vh;
    border-radius: 5px;
    background: var(--white);
    overflow: auto;
    cursor: default;
}

    .modal-dialog > * {
        padding: 16px;
    }

.modal-header1,
.modal-footer1 {
    background: var(--lightgray);
}

.modal-header1 {
    display: flex;
    align-items: center;
    justify-content: space-between;
}


    .modal-header1 .close-modal {
        font-size: 1rem;
        font-weight: bold;
        background: var(--blue);
        color: var(--white);
        padding: 0.20rem 0.6rem;
        border-radius: 20px;
    }

.btn1 {
    font-weight: bold;
    background: var(--blue);
    color: var(--white);
    padding: 0.50rem 1rem;
    border-radius: 20px;
}

    .modal-header1 .close-modal:hover,
    .btn1:hover {
        box-shadow: 0 0 15px 10px rgba(55, 93, 165, .2);
        transform: translateY(-2px)
    }

.modal-footer1 {
    padding-left: 48%
}

/* formulario*/

.login_wrapper {
    margin-top: 1.5% !important;
}

.login_form {
    background-color: #f8f8f8;
    padding-left: 25px;
    padding-right: 25px;
    border-radius: 35px;
    min-width: 280px;
}

.registration_form {
    background-color: #f8f8f8;
    padding-left: 25px;
    padding-right: 25px;
    border-radius: 35px;
    min-width: 280px;
}
.btn-success {
    color: #fff !important;
    background-color: #124283 !important;
    border-color: #002083 !important;
}

.btn-success:hover {
    color: #fff !important;
    background-color: #021b3d !important;
    border-color: #124283 !important;
}

.btn-success:active {
    color: #FFF !important;
    background-color: #021b3d !important;
    border-color: #275491 !important;
}

.btn-success:active, .btn-success:focus {
    -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    box-shadow: 0 0 0 0.2rem rgba(27,25,182,.5) !important;
}


/*<!Lineas horizontales de h1 al lado del logo*/
.login_content h1:before {
    top: 67px !important;
}

.login_content h1:after {
    top: 67px !important;
}


.recover_pass h1:before {
    top: 118px !important;
}

.recover_pass h1:after {
    top: 118px !important;
}
/*<!Lineas horizontales de h1 al lado del logo*/