
* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}

body {
   
   background:  url("https://siete-gm.scayco.com/assets/fondo_scayco.jpg");
   background-size: cover;
    background-position: center center;
	font-family: 'Quicksand', sans-serif;
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
}

.contenedor {
    padding: 40px;
	width: 90%;
	max-width: 300px;
	max-height: 450px;
	 border: 2px solid #031a57;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: rgba(0, 0, 0, 1.15) 0px 0px 25px 25px;
	background: #fff;
	
	display: grid;
	
}


 .verticalText {
writing-mode: vertical-lr;
transform: rotate(180deg);
} 

.columna-izquierda {
	padding: 40px;
}

.columna-derecha {
	background-image: url('../fondo-inicio.jpg');
	background-size: cover;
	background-position-x: center;
	filter: brightness(70%); /*para oscurecer la imagen*/
}


.header {
	margin-bottom: 10px;
	text-align: center;
}

.header h1 {
	color: #031a57;
}

.header h6 {
	color: #031a57;
}

.header p {
	color: #000;
}

label {
	margin-bottom: 10px;
	display: block;
	font-weight: 500;
	color: #000;
	font-size: 14px;
}

.contenedor-input {
	position: relative;
}

.registro {
	display: none;
}

.registro.activo {
	display: block;
}

.exito {
	background-color: red;
	display: none;
	height: 100%;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 20px;
}

.exito.activo {
	display: flex;
}

.exito svg {
	width: 50px;
	height: 50px;
	color: #031a57;
}


input {
	height: 50px;
	line-height: 50px;
	font-size: 16px;
	font-weight: bold;
	width: 100%;
    border: 2px solid #031a57;
	border-radius: 5px;
	padding: 0 20px 0 45px;
	margin-bottom: 20px;
	background: #ffffff;
	color: #031a57;
	font-family: 'Quicksand', sans-serif;

}

input:focus {
	outline: none;
	background: #ffffff;
	border: 2px solid #031a57;
}

.contenedor-input svg {
	position: absolute;
	color: #031a57;
	top: 17px;
	left: 17px;
} 

.contenedor-boton {
	display: flex;
	justify-content: center;
}

button {
	font-family: 'Quicksand', sans-serif;
	font-size: 16px;
	border-radius: 5px;
	margin-top: 20px;
	background: #41a6ff;
	height: 50px;
	color: #000;
	padding: 0 50px;
	display: flex;
	align-items: center;
	justify-content: end;
	border: 2px solid #031a57;
	cursor: pointer;
	transition: .3s ease all;
	outline: none;
}

button:hover {
	cursor: pointer;
	background: #41a6ff;
	color: #000;
}

button svg {
	margin-left: 10px;
	width: 20px;
	height: 20px;
}

#btn-login{
	font-family: 'Quicksand', sans-serif;
	font-size: 16px;
	border-radius: 5px;
	margin-top: 20px;
	background: #031a57;
	color: #fff;
	height: 50px;
	padding: 0 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 2px solid #031a57;
	cursor: pointer;
	transition: .3s ease all;
	outline: none;
}
#btn-login:hover {
	cursor: pointer;
border: 2px solid #031a57;
	background: #031a57;
	color: #41a6ff;
	
}

#btn-login svg {
	margin-left: 10px;
	width: 20px;
	height: 20px;
}


/*Sniper
https://codepen.io/wang0nya/pen/bzwQPr 
https://codepen.io/EastingAndNorthing/pen/aNWrZz
https://codepen.io/vineethtrv/pen/NWxZqMM
*/
#spinner:not([hidden]) {
	position: fixed;
	/*	position: fixed;*/
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0px 10px;
	z-index:1;
	background-color: #3333;
  }
  
  #spinner::after {
	content: "";
	width: 50px;
	height: 50px;
	border: 2px solid #f3f3f3;
	border-top: 3px solid #f25a41;
	border-radius: 100%;
	will-change: transform;
	animation: spin 1s infinite linear
  }
  
  

/*centrando reCAPTCHA*/
  .text-center {
	text-align: center;
  }
  .g-recaptcha {
	display: inline-block;
  }
  
  /* *********************/
        /* seccion F O O T E R */
        /* *********************/
        
        footer {
            background-color: #00f;
            color: #fff;
            text-align: center;
            padding: 30px 0;
        }
        
        footer a {
            text-decoration: none;
            color: #fff;
            display: inline-block;
            margin: 5px;
            font-size: 26px;
        }
        
         footer .fila {
            display: flex;
            justify-content: space-between;
            margin: 30px 0;
        }
        
        footer .fila .datos{
                text-align: left;
                padding: 30px;
            margin: 0 5px;
            }
            footer .fila .redes
            {
                text-align: right;
                padding: 30px;
            margin: 0 5px;
            }
            
    @keyframes spin {
	from {
	  transform: rotate(0deg);
	}
	to {
	  transform: rotate(360deg);
	}
  }
          