@font-face {
    font-family: "Roboto Slab";
    src: url('../fonts/RobotoSlab-VariableFont_wght.ttf') format('truetype');
}

body {
    position: relative;
    height: 100vh;
    color: white;
    font-family: "Roboto Slab", var(--bs-font-sans-serif);
}

body:before {
    content: ' ';
    display: block;
    position: absolute;
    left: -50%;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0.2;
    background-repeat: no-repeat;
    background-position: 50% 0;
    background-size: cover;
}

body div {
    /* position: relative; */
    z-index: 999;
}

#navbarPortada {
    & input {
        border-radius: 1.5rem;
    }

    & .dropdown-item {
        color: black;
        margin-left: 2rem;
        margin-top: 1rem;
    }
}

div#contenedor {
    background-image: url(../img/fondo_portada.jpg);
    background-size: cover;
    background-position: center;
    position: relative;
}

div#contenedor::before {
    content: "";
    background-color: rgba(39, 98, 175, 0.7);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

h1 {
    border-bottom: 0px;
    font-weight: normal;
    font-size: 4rem;
    margin-bottom: 1.5rem;
    line-height: 1;
}

button,
.btn {
    border-radius: 2rem;
}

.btn-link {
    font-size: 0.7rem;
}

.btn-success {
    background-color: rgb(133, 204, 52);
}

.div-auth {
    padding-top: 4rem;

    & .card {
        border-radius: 1.5rem;
        padding: 1rem 2rem;
    }

    & .card-header {
        font-size: 2.5rem;
        color: #0d346e;
        background-color: transparent;
        border-bottom: 0px;
        padding: 1rem;

        & .header-border {
            width: 40px;
            height: 5px;
            display: block;
            border-bottom: 5px solid #0d346e;
        }
    }

    & input {
        border-radius: 1.5rem;
    }

    & .input-group {
        border-top-left-radius: 1.5rem;
        border-bottom-left-radius: 1.5rem;
    }

    & #span-digito-rut {
        border-top-right-radius: 1.5rem;
        border-bottom-right-radius: 1.5rem;
    }

    & button {
        background-color: rgb(133, 204, 52);
        border-color: rgb(133, 204, 52);
        color: white;
    }
}