:root {
    /*Colores*/
    --primario: rgb(30, 58, 138);
    --secundario: rgb(59, 130, 246);
    --terciario: rgb(239, 246, 255);
    --sombraTerciario: rgb(239, 246, 255, 0.4);

    --monserrat: "monserrat";
    --monserrat_bold: "monserrat_bold";
    --opensans_light: "opensans_light";
}

@font-face {
    font-family: 'monserrat';
    src: url('../fuentes/monserrat.ttf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'monserrat_bold';
    src: url('../fuentes/monserrat_bold.ttf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'opensans_light';
    src: url('../fuentes/opensans_light.ttf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    font-family: var(--opensans_light);
    -webkit-tap-highlight-color: transparent;
    /* iOS */
    -moz-outline-style: none;
    outline-style: none;
    /* Firefox */
    outline: none;
    /* Todos los demás navegadores */
}

div {
    display: flex;
}

img {
    object-fit: contain;
}

input{
    border: none;
    outline: none;
    background: none;
}

input[type=number] {
    -moz-appearance: textfield;
  }
  
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

html {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

body{
    width: 100%;
    height: 100%;
    overflow: hidden;
}

#contenedor{
    width: 100%;
    height: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    position: relative;
}

#formulario{
    width: 500px;
    height: auto;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#head_formulario{
    width: 100%;
    height: auto;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

#caja_logo{
    width: auto;
    height: auto;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

#logo_zignus{
    width: 70px;
    height: 70px;
    filter: drop-shadow(0 0.7px 2px rgba(0, 0, 0, 0.34));
}

#p_logo{
    width: auto;
    height: auto;
    font-size: 43px;
    font-family: var(--monserrat_bold);
    margin-left: 20px;
    color: var(--primario);
    filter: drop-shadow(0 0.7px 2px rgba(0, 0, 0, 0.34));
}

#titulo_formulario{
    width: auto;
    height: auto;
    font-size: 25px;
    color: var(--primario);
    margin-bottom: 30px;
    font-family: var(--monserrat);
}

#cuerpo_formulario{
    width: 100%;
    height: auto;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 22px;
    margin-top: 22px;
    border-top: solid 1px var(--terciario);
}

.caja_input{
    width: 320px;
    height: auto;
    flex-direction: row;
    align-items: center;
    margin-bottom: 30px;
    padding: 15px;
    border-radius: 35px;
    background: var(--sombraTerciario);
    box-shadow: 0 0.1px 0.1px rgba(0, 0, 0, 0.3);
}

.icono_input{
    width: 35px;
    height: 35px;
    filter: drop-shadow(0 0.7px 2px rgba(0, 0, 0, 0.34));
}

.input_formulario{
    width: 100%;
    height: 35px;
    font-size: 20px;
    margin-left: 15px;
}

#boton_login{
    width: 77px;
    height: 77px;
    justify-content: center;
    align-items: center;
    background: var(--primario);
    border-radius: 50%;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
    opacity: 0.9;
    transition: opacity 1s ease-in-out, transform 1s ease-in-out;
    cursor: pointer !important;
}

#boton_login:hover{
    opacity: 1;
    transform: scale(1.02);
}

#icono_login{
    width: 34px;
    height: 34px;
    filter: drop-shadow(0 0.7px 2px rgba(0, 0, 0, 0.34));
    cursor: pointer !important;
}

#p_login{
    width: auto;
    height: 43px;
    margin-top: 30px;
    color: var(--primario);
    font-family: var(--monserrat_bold);
    text-align: center;
    align-content: center;
    font-size: 20px;
}