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

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

body {
    height: 100%;
    margin: 0px;
    margin-top: 0px;
    font-family: 'poppins',sans-serif;
    /* background-color: #F2F4F7; */
    background-color: #fff;
    /* background: linear-gradient(#27C6EA 1%, white 12%, #E5F4FA); */
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* Altura completa de la ventana */
}

h1 {
    color: rgb(141,149,159);
    /* color: #007bff;
    color: rgb(25,157,224); */
    text-align: center;
    font-size: 3rem;
    font-weight: 400;
}

h2,h3 {
    color: rgb(141,149,159);
    text-align: center;
    font-size: 2.2rem;
    font-weight: 400;
}

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


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

    h2 {
        font-size: 2rem;
    }
}

.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;
}

.centrado {
    text-align: center;
}
