:root {
    /*Colores*/
    --primario: rgb(43, 93, 187);
    --sombraPrimario: rgb(22,22,22, 0.1);
    --secundario: rgb(59, 130, 246);
    --terciario: rgb(239, 246, 255);
    --sombraTerciario: rgb(239, 246, 255, 0.4);

    
    --arial: "arial";
    --arial_bold: "arial_bold";
}

@font-face {
    font-family: 'arial';
    src: url('../fuentes/arial.ttf') format('opentype');
    /* src: url('/vista/css/../fuentes/helveticaneue.ttf')  format('truetype'); */
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'arial_bold';
    src: url('../fuentes/arial_bold.ttf') format('opentype');
    /* src: url('/vista/css/../fuentes/helveticaneue.ttf')  format('truetype'); */
    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: row;
    align-items: center;
    justify-content: center;
}

#caja_logo{
    width: 250px;
    min-width: 250px;
    height: 350px;
    min-height: 350px;
    background: var(--primario);
    justify-content: center;
    align-items: center;
    border-radius: 11px 0px 0px 11px;
}

#logo{
    width: 200px;
    height: 200px;
    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(--arial_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(--arial);
}

#cuerpo_formulario{
    width: 100%;
    height: auto;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 22px;
    border-radius: 0px 11px 11px 0px;
    border: 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: 200px;
    height: 50px;
    justify-content: center;
    align-items: center;
    background: var(--secundario);
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
    opacity: 0.9;
    border-radius: 25px;
    transition: opacity 1s ease-in-out, transform 1s ease-in-out;
    cursor: pointer !important;
    color: #ffffff;
    font-size: 20px;
    font-family: var(--arial_bold);
}

#boton_login:hover{
    opacity: 1;
    transform: scale(1.015);
}

#icono_login{
    width: 34px;
    height: 34px;
    filter: drop-shadow(0 0.7px 2px rgba(0, 0, 0, 0.34));
}

#p_login{
    width: auto;
    height: 43px;
    min-height: 43px;
    margin-top: 30px;
    color: var(--primario);
    font-family: var(--arial_bold);
    text-align: center;
    align-content: center;
    font-size: 20px;
}