
body, html {
    height: 100vh !important;
}

body {
    color: var(--color-letra-login);
    background-color: var(--color-background-login);
    margin: 0;
    text-align: center;
    display: grid;
    justify-items: center;
    align-items: center;
    justify-content: center;
    font-family: var(--font-family) !important;
    grid-template-areas: "logo" "tipoLogin" "." "biit";
}

.logo {
    grid-area: logo;
    align-self: end;
}

.biit-logo {
    background-image: var(--logo-empresa);
    width: 320px;
    height: 200px;
    align-self: end;
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    line-height: 52px;
    padding: 0;
}

div.tipoLogin {
    align-self: center;
    padding: 30px 0;
    grid-area: tipoLogin;
}

fieldset {
    border: 0;
    padding: 0;
}

legend {
    text-align: left;
}

input {
    padding: 15px 40px;
    margin: 8px 0;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    background-color: white;
    color: black;
    border: white;
    width: -webkit-fill-available;
}

img.icono-input {
    position: absolute;
    margin: 14px 4px;
    z-index: 1;
}

button[class*='boton'] {
    padding: 12.5px;

}

input:focus {
    outline: inherit;
    background-color: #f3f2f1;
}

#formularioQr {
    grid-area: qr;
}

#formularioBarcode {
    grid-area: barcode;
}

#formularioMail {
    grid-area: mail;
}

#formularioOauth {
    grid-area: oauth;
}

.biit-grid {
    grid-template-columns: 50% 50%;
    grid-template-rows: auto;
    grid-column-gap: 6px;
    grid-row-gap: 10px;
    grid-template-areas: "qr barcode" "mail mail" "oauth oauth";
}

/*GOOGLE*/
.btnOauth {
    display: inline-block;
    background: white;
    color: #444;
    width: 190px;
    border-radius: 5px;
    border: thin solid #888;
    box-shadow: 1px 1px 1px grey;
    white-space: nowrap;
    text-transform: uppercase;
}

.btnOauth:hover {
    cursor: pointer;
}

.btnOauth span.label {
    font-family: serif;
    font-weight: normal;
}

.btnOauth span.icon {
    display: inline-block;
    vertical-align: middle;
    width: 42px;
    height: 42px;
}

span.buttonText {
    display: inline-block;
    vertical-align: middle;
    padding-left: 42px;
    padding-right: 42px;
    font-size: 14px;
    font-weight: bold;
    font-family: 'Roboto', sans-serif;
}

span#poweredByBiit {
    align-self: flex-end;
    padding: 10px 0;
    grid-area: biit;
}

#spinner {
    position: absolute;
    left: 47.5%;
    top: 50%;
}