﻿@import "colores.css";
@import "tamanioFuentes.css";

@font-face {
	font-family: 'Roboto';
	src: url('../fonts/Roboto-Regular.ttf');
}

@font-face {
	font-family: 'Roboto-Medium';
	src: url('../fonts/Roboto-Medium.ttf');
}

@font-face {
	font-family: 'Roboto-Black';
	src: url('../fonts/Roboto-Black.ttf');
}

@font-face {
	font-family: 'Roboto-Bold';
	src: url('../fonts/Roboto-Bold.ttf');
}

@font-face {
	font-family: 'Roboto-Light';
	src: url('../fonts/Roboto-Light.ttf');
}

@font-face {
	font-family: 'Roboto-Thin';
	src: url('../fonts/Roboto-Thin.ttf');
}

* {
    box-sizing: border-box;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=number] {
    -moz-appearance: textfield;
}

html, body {
    font-family: 'Roboto';
    margin: 0;
    padding: 0;
    height: 100%;
}

.loginform-wrapper {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
    background: #FFF;
    min-width: 320px;
    flex-direction: column;
}

.loginform-wrapper input {
    border: none;
    height: 40px;
    width: 256px;
    border-radius: 0 50px 50px 0;
    font-size: var(--fontSize13);
}

.loginform-wrapper * {
        outline: none;
}

.slidelogin {
    width: 75px;
    margin-bottom: 20px
}

.btnLogin {
    background: var(--color1);
    color: #FFF;
    width: 100%;
    height: 40px;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-size: var(--fontSize16);
    text-decoration:none
}

.btnLogin:hover {
    background: var(--color6);
}

.input-field-login {
    display: flex;
    border: 1px solid #CCC;
    border-radius: 50px;
    margin-bottom: 20px;
}

.input-field-login input {
    border:none
}

.input-field-login input:focus {
        border: none;
        border-radius: 50px;
}

.input-field-login:hover, .input-field-login:hover input {
    background: #FCFCFC;
}

.input-field-login label {
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    user-select: none;
	-moz-user-select: none;
	-webkit-user-select: none;
	-ms-user-select: none;
    font-size: var(--fontSize14);
    color: var(--color6);
}

input {
  -webkit-background-clip: text !important;
}

.logologin {
    background: url(../images/logologin.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 300px;
    height: 200px;
    background-position: center;
    margin-bottom: 30px;
}

.errorLogin {
    color: var(--colorRojo);
    margin-top: 10px;
}

.boton360link {
    margin-top: 30px;
    text-decoration: underline;
    cursor: pointer;
    color: var(--colorPrimario);
}

.errorok, .logininfo {
    background: #f0fae8;
    padding: 20px;
    border-radius: 10px;
    max-width: 310px;
    margin: 10px;
}

.errorok:empty {
    display: none;
}

.logininfo {
    background: #FFF;
    color: #666;
    font-size: var(--fontSize14);
    padding: 10px;
}

#recuperar1,
#recuperar2 {
    justify-content: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

a {
    color: var(--colorPrimario);
}

.margintop20 {
    margin-top: 20px !important;
}

.absolute-wrapper {
    position: relative;
}

.field-icon {
    position: absolute;
    right: 5px;
    top: 4px;
    display: flex;
    width: 32px;
    height: 32px;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    border-radius: 100%;
    color: var(--colorPrimarioOscuro);
}

.field-icon:hover {
    background: var(--color3);
}

.displaynone {
    display: none !important;
}

.input-confirm {
    width: 100%;
    border: 1px solid #CCC;
    padding: 10px;
    border-radius: 5px;
    background: #FFF;
    cursor: pointer;
}

.btnIdioma {
    cursor: pointer;
    margin-top: 10px;
}

.textoRecuperarContrasenia {
    margin-bottom: 1em;
    margin-left: 1em;
}