div.loginContainer {
    width: 100%;
    min-height: 100vh;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 15px;
    position: relative;
    z-index: 1;
}

div.loginContainer::before {
    content: "";
    display: block;
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: var(--fondo-login);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

div.cardLogin {
    width: 450px;
    padding: 75px 50px 30px 50px;
    background-color: var(--color-corporativo);
    border-radius: 8px;
    overflow: hidden;
}

div.biit-logo {
    background-image: var(--logo-empresa);
    width: auto;
    height: 90px;
    align-self: end;
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
    margin: 0 auto 55px;
}

/*Formulario*/
form#formularioMail {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

div.input-icon {
    position: relative;
    width: 100%;
    margin-bottom: 15px;
}

div.input-icon input {
    height: 60px;
    border-radius: 3px;
    padding: 0 30px 0 65px;
    width: 100%;
    background: #e6e6e6;
    border: 0;
    font-size: 1.1rem;
}

div.input-icon img:nth-of-type(1) {
    position: absolute;
    left: 15px;
    top: 15px;
}

div.input-icon img:nth-of-type(2){
    position: absolute;
    right: 10px;
    top: 15px;
}

form#formularioMail button {
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 25px;
    color: white;
    text-transform: uppercase;
    font-weight: bold;
    font-family: var(--font-family);
    font-size: 1.1rem;
}


/*oAuth*/
div.metodosoAuth {
    text-align: center;
}

div.metodosoAuth span {
    color: #999999;
    padding: 40px 0 25px 0;
}

div.metodosoAuth button[tipo="google"] {
    size: 14px;
    font-family: var(--font-family);
    background-color: white;
    color: rgba(0, 0, 0, 0.54);
    height: 40px;
    padding: 0 8px;
    align-items: center;
    display: flex;
    font-weight: bold;
    text-transform: capitalize;
}

div.metodosoAuth button[tipo="google"] img {
    margin-right: 24px;
}

/*Registro*/

div.registro a{
    display: block;
    text-decoration: none;
}

div.contrasenya a{
    color: white;
    font-weight: bold;
    text-decoration: none;
    display: block;
}

#poweredByBiit {
    font-family: 'Raleway', sans-serif;
    position: absolute;
    top: 95%;
    width: 100%;
    text-align: center;
    z-index: 99;
    color: white;
}

/*SPINNER*/
div#spinner {
    position: absolute;
    width: 100%;
    z-index: 2;
    margin: 0 auto;
    text-align: center;
    top: 50%;
}

/*
html {
    height: 100% !important;
    overflow-x: hidden;
    position: relative;
}

body {
    color: var(--color-letra-login);
    background-color: var(--color-background-login);
    overflow: hidden;
}

.biit-logo {
    background-image: var(--logo-empresa);
    height: 80px;
    align-self: end;
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
    margin: 0 auto;
}

div.tipoLogin {
    padding: 30px 0;
}

fieldset {
    border: 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;
    width: -moz-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;
    width: fit-content;
    justify-self: center;
}

#formularioBarcode {
    grid-area: barcode;
    width: fit-content;
    justify-self: center;
}

#formularioMail {
    grid-area: mail;
}

#formularioOauth {
    grid-area: oauth;
}

.registro{
    grid-area: registro;
}

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

/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 {
    position: absolute;
    bottom: 0;
    margin: 0 auto;
    text-align: center;
}

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

a.registro{
    color: var(--color-corporativo-negro-oscuro);
    text-transform: uppercase;
    font-weight: bold;
    text-decoration: none;
}

a.registro:hover{

}*/