﻿:root {
    --color1: #57bb90;
    --color2: #b1e0cc;
    --color3: #d6eee4;
    --color4: #e8f6f0;
    --color5: #fafdfc;
    --color6: #7bcaa8;
    --colorPrimarioOscuro: #2a694e;
    --colorPrimario: #398d69;
    --colorSecundario: #409f77;
    --colorRojo: #ee5253;
    --colorRojoClaro: #f7afaf;
    --colorRojoClaro2: #fef5f5;
    --colorVerde: #4fd66d;
    --colorVerdeOscuro: #29b047;
}

@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');
}

* {
    outline: none;
    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%;
}

.userselectnone {
	user-select: none;
	-moz-user-select: none;
	-webkit-user-select: none;
	-ms-user-select: none;
}

.login-container {
    display: flex;
    height: 100%;
}

.slideshow-container {
    display: block;
    flex: 1;
    height: 100%;
    position: relative;
}

.slidelogin {
    height: 100%;
    background-size: cover;
    background-position: center center;
    transition: opacity 3s linear;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.loginwrapper {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
    background: #FFF;
    min-width: 320px;
}

.loginform form, .loginform .form360 {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.loginform input {
    border: none;
    height: 40px;
    width: 256px;
    border-radius: 0 50px 50px 0;
}

.loginform .btnLogin {
    background: var(--color1);
    color: #FFF;
    width: 300px;
    height: 40px;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.loginform .btnLogin:hover {
    background: var(--color6);
}

.input-field-login {
    display: flex;
    border: 1px solid #CCC;
    border-radius: 50px;
    margin-bottom: 20px;
}

.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: 14px;
    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: 100px;
}

@media only screen and (max-width: 768px) {
	.slideshow-container {
		display: none;
	}
}

.errorlogin {
    display: none;
}

.errorlogin {
    background: var(--colorRojo);
    color: #FFF;
    margin-bottom: 20px;
    border-radius: 5px;
    padding: 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: 14px;
    padding: 10px;
}

#recuperar1,
#recuperar2 {
    justify-content: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

a {
    color: var(--colorPrimario);
}

.margintop20 {
    margin-top: 20px !important;
}