/* Hoja de estilo de la pÃ¡gina de login */
BODY {
	font-family: "open sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
	color: #283E49;
	font-size: 15px;
	background-color: #fff;
	padding: 30px;
}

* {
	box-sizing: border-box;
}

div.loginbox {
    max-width: 400px;
    padding: 40px;
    margin: 0 auto;    
    border-radius: 20px;
    margin-top: 8%;
    position: relative;
   	box-shadow: 0 10px 16px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19) !important;
}
ul {
	list-style: none;
	margin: 0px;
	padding: 0px;
}
ul li {
	margin-bottom: 13px;
}
ul li:FIRST-CHILD {
	text-align: center;
	margin-bottom: 15px;
}

label {
	width: 100px;
}

.login-button,
input[type=button] {
	display: block;
	margin: auto;
    min-width: 70%;
    padding: 10px 16px;
    font-size: 15px;
    line-height: 1.3333333;
    border-radius: 6px;
    color: #fff;
    background-color: #337ab7;
    border-color: #2e6da4;
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    touch-action: manipulation;
    cursor: pointer;
    user-select: none;
    background-image: none;
    border: 1px solid transparent;
}

ul li.loginlogo img {
	max-width: 200px;
}

input[type=text], input[type=password], select {
    width: 100%;
    font-size: 13px;
    margin: 5px 0;
    display: inline-block;
    border: 1px solid #ccc;
    box-shadow: inset 0 1px 3px #ddd;
    border-radius: 4px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 8px 7px;
}

select {
	text-transform: none;
	font-size: 13px;
	margin-bottom: 15px;
}

#versionpalce {
	font-size: 10px;
    color: #bbb;
    position: absolute;
    width: 100%;
    text-align: center;
    bottom: 6px;
    left: 0px;
}

.b275 {
	width: 275px;
}

/*SECOND FACTOR*/

.second input[type=text], .second input[type=password], .second select {
    width: 35px;
    font-size: 25px;
    margin: 5px 0;
    display: inline-block;
    border: 1px solid #ccc;
    box-shadow: inset 0 1px 3px #ddd;
    border-radius: 4px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 8px 7px;
    text-align: center;
}

.second ul {
	margin-top: 1rem;
	list-style: none;
	display: flex;
	justify-content: space-between;
	text-align: center;
}

/*WAIT*/

#wait-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

/* oculto por defecto */
.wait-hidden {
  display: none !important;
}

/* spinner */
.spinner {
  width: 48px;
  height: 48px;
  border: 4px solid #ccc;
  border-top: 4px solid #0078d7;
  border-radius: 50%;
  animation: spin 0.9s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}