body {
    background: url(../imagenes/logo.png);
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
}

#contenedor_carga,
#contenedor_carga_modal {
    background-color: rgba(240, 248, 250, 50%);
    height: 100%;
    width: 100%;
    position: fixed;
    z-index: 10000;
}

#carga {
    border: 15px solid #b8b8b85e;
    border-top-color: #04a590;
    border-top-style: double;
    height: 100px;
    width: 100px;
    border-radius: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    animation: girar 1s cubic-bezier(0.18, 0.89, 0.32, 1.28) infinite;
}

@keyframes girar {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.logo {
    width: 100%;
    margin-top: 10px;
}

.text1 {
    margin-bottom: 1rem;
    font-family: serif;
    font-size: 25px;
}

.formulario {
    display: flex;
    flex-direction: column;
    margin-bottom: 1rem;
    font-family: serif;
}

.inicio {
    box-shadow: 0px 1px 4px 1px rgb(0 0 0 / 50%);
    background-color: rgba(255, 255, 255, 90%);
    border-bottom: solid 0.4rem #39A1ad;
    text-align: center;
    border-radius: 10px;
    margin-top: 3rem;
}

input[type=text] {
    box-shadow: 0px 6px 4px -5px black;
    font-family: serif;
}

input[type=password] {
    box-shadow: 0px 6px 4px -5px black;
    font-family: serif;
}

.enter {
    margin-top: 2rem;
    margin-bottom: 1rem;
    box-shadow: 0px 7px 6px -5px black;
    font-family: serif;
    border-radius: 5px !important;
}