* {
    margin: 0;
    padding: 0;
    border-width: 0;
    box-sizing: border-box;
}

html {
    height: 100%;
    font-family: 'poppins',sans-serif;
}

body {
    height: 100%;
    margin-top: 0px;
    font-family: 'poppins',sans-serif;
    /* background-color: rgb(237,239,242); */
    background-color: #fff;
    /* background: linear-gradient(#27C6EA 1%, white 12%, #E5F4FA); */
    display: flex;
    flex-direction: column;
    /* background-image: url('../elementos/fondo.jpg'); */
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
    background-attachment: fixed;
    /* background-color: #d9eefa; */
    margin: 0;
    min-height: 100vh;
    font-size: 1.1rem;
}

@media (max-width: 1060px) {
    body {
        background-position: center top;
        background-size: contain;
        background-attachment: scroll; /* para móviles */
    }
}

h1 {
    color: #1c6ea0;
    text-align: center;
    font-size: 2.6rem;
    font-weight: 400;
}

h2 {
    color: #1c6ea0;
    text-align: center;
    font-size: 2.1rem;
    font-weight: 400;
}

h3 {
    color: #1c6ea0;
    text-align: center;
    font-size: 1.9rem;
    font-weight: 400;
}

input,
textarea,
select,
button {
    font-family: inherit;  /* hereda del body o de html */
}


@media (max-width: 1060px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    h3 {
        font-size: 1.3rem;
    }
}

.invisible {
    visibility: hidden;
}

.visible {
    visibility: visible;
}

.display-false {
    display: none !important;
}

.alerta {
    color:crimson !important;
}

.observacion {
    color:yellow;
}

.ok {
    color:forestgreen;
}

.texto-destacado {
    font-weight: 800;
}

a {
    text-decoration: none;
    color: #000;
}

hr {
    height: 1px;
    background-color: #fff;
}

p {
    margin-bottom: 20px !important;
}

.align-left {
    text-align: left !important;
}

.align-right {
    text-align: right !important;
}

.align-center {
    text-align: center !important;
}
