@import url('fonts.css');

* {
    font-family: Avenir LT Std Roman, sans-serif;
    font-size: 16px;
}

html {
    position: relative;
    min-height: 100%;
    font-size: 14px;
}

body {
    font-family: 'AvenirNextLTPro', sans-serif;
    background-color: #faf8f7;
    margin: 0;
    padding: 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    height: 100vh;
    justify-content: center;
    align-items: center;
}

.container {
    height: 100%;
    width: 100%;
    margin-right: 1px;
    margin-left: 0px;
}

.row {
    width: 80%;
    height: 80%;
    
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
    border-radius: 21px;
}

.content-openId {
    
    height: 100vh;
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 50rem;
    min-height: 40rem;
}

.form-control {
    background-color: #e1e1e1;
    border-radius: .7rem;
    font-size: 16px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

@media (max-width: 950px) {
    html {
        font-size: 14px;
    }

    .image {
        display: none;
    }

    .content {
        height: 100vh;
        width: 100%;
        padding: 2rem;
        display: flex;
        justify-content: center;
        align-items: center;
    }
}

.div-mensaje {
    margin: 20px;
    padding: 20px;
}

.link-recovery-password {
    margin: 15px;
    padding: 2px;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 4rem;
}

    .link-recovery-password > div {
        width: 60%;
        max-width: 30rem;
    }

.div-actions > .btnCancelar {
    margin-left: 5px;
    min-width: 15%;
    border-radius: 13px;
}

#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.5);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.loader-inner {
    width: 100px;
    height: 100px;
    display: grid;
    border: 8px solid #0000;
    border-radius: 50%;
    animation: s6 2s infinite linear;
}

    .loader-inner::before,
    .loader-inner::after {
        content: "";
        grid-area: 1/1;
        margin: 4px;
        border: inherit;
        border-radius: 50%;
    }

    .loader-inner::before {
        animation: inherit;
        animation-duration: 1s;
        animation-direction: reverse;
    }

    .loader-inner::after {
        margin: 16px;
    }

.hideElement {
    display: none;
}

.flexElement {
    display: flex;
}

@keyframes s6 {
    100% {
        transform: rotate(1turn)
    }
}

.buttonLink {
    color: var(--bs-link-color);
    text-decoration: underline;
    background: none;
    border: none;
    padding: 0;
}

.btn-outline-secondary {
    background: #e1e1e1;
    --bs-btn-color: #777e85;
    --bs-btn-border-color: #c0c8cf;
}

.input-group > .btn {
    border-top-right-radius: 0.6rem !important;
    border-bottom-right-radius: 0.6rem !important;
}
