body {
    margin: 0;
    padding: 0;
	height: 100%;
    font-family: 'Raleway', sans-serif;
}

#imglogo{
	width: 400px;
	padding-bottom:10px;
}


.main-container {
	display: flex;
	height: 100vh; /* Ocupa toda la altura de la ventana */
	overflow-x: hidden;
}


.left-section-image {
	flex-basis: 50%; /* Ocupa el 50% del ancho inicialmente */
	background-image: url('../images/business_people.png'); /* Reemplaza con la URL de tu imagen */
	background-size: cover; /* Cubre toda el área */
	background-position: center; /* Centra la imagen */
	background-repeat: no-repeat;
}


.right-section {
	flex-basis: 50%; /* Ocupa el 50% del ancho inicialmente */
	
	display: flex; /* Para centrar contenido si es necesario */
	flex-direction: column;
	justify-content: center; /* Centra el contenido verticalmente */
	/*align-items: center;*/ /* Centra el contenido horizontalmente */
	box-sizing: border-box;
	background-color: #eff4f9; /* Color de fondo para diferenciarla */
}

@media (max-width: 768px) {
	
	#imglogo{
		 width: 250px;
	}
	/*
	body{
		height: 100vh;
		background-size: cover;
	}
	*/
	.left-section-image {
		display: none; /* Oculta la sección de la imagen */
	}

	.right-section {
		flex-basis: 100%; /* La sección izquierda ocupa todo el ancho */
	}
}
h1 {
    margin: 0;
    color: #ffffff;
    text-align: center;
    font-size: 50px;
    font-weight: 500;
    letter-spacing: 2px;
    padding: 50px 0;
}

h2 {
    margin: 0;
    color: #fc3955;
    font-size: 25px;
    font-weight: 400;
    text-align: center;
    letter-spacing: 1px;
    padding-bottom: 30px;
}

p.w3l-register-p {
    color: #eee;
    font-size: 13px;
    text-align: center;
    margin-top: 2em;
}

.w3l-login-form {
    background: #fcfcfc;/*rgba(0, 0, 0, 0.8);*/
	/*background: rgba(255, 255, 255, 0.4117647058823529);*/
    max-width: 450px;
    margin: 0 auto;
    padding: 50px;
    border-radius: 10px;
    box-sizing: border-box;
	box-shadow: 0 0 30px 10px rgba(0, 0, 0, 0.1); 
}

.group {
    display: flex;
    /*padding: 5px;*/
    background-color: #efefef;
}

.group i {
    color: #fc3955;
    font-size: 20px;
    padding: 0 10px;
}

.w3l-form-group {
    margin-bottom: 20px;
}

.w3l-form-group label {
    display: block;
    text-transform: uppercase;
    font-size: 13px;
    color: #d2d2d2;
    letter-spacing: 2px;
    margin-bottom: 10px;
    font-style: italic;
}

input[type="text"],
input[type="password"] {
    width: 100%;
    border: 1px solid #e0e0e0;
    box-sizing: border-box;
    /*background: transparent;*/
	background:#FFFFFF;
    color: #000;
	height:35px;
	border-radius: 0px;
}

input[type="text"]:focus,
input[type="password"]:focus {
    outline: none !important;
	box-shadow: none !important; 
}


input[type="text"]::placeholder,input[type="password"]::placeholder {
  color: #bbbbbb;
  font-style: italic;
} 


.button {
    background: #2d87a9;
    color: #fff;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    padding: 12px 60px;
    cursor: pointer;
    width: 100%;
    border-radius: 6px;
}

.button:hover {
    background-color:#287a99;
	color: #fff;
    transition-duration: 1s;
}

.cod_verif{
	border-width: 1px !important;
	border-style: solid !important;
	border-color: #eeeeee !important;
}

.forgot {
    /*display: flex;
    justify-content: space-between;
    margin: 20px 0;*/
	padding-bottom:20px;
}

a {
    color: #eee;
    font-size: 14px;
    text-decoration: none;
}

.forgot a {
    color: #000;
    text-align: center;
    margin: 0px;
	font-size: 13px;
	text-decoration:none !important;
	
	border-bottom-style:dotted;
	border-bottom-width: 1px;
}

.register {
    color: /*#00BCD4*/#ff7608;
    text-decoration:none !important;
	font-weight:bold;
	
	border-bottom-style:dotted;
	border-bottom-width: 1px;
}

.register:hover{
	 color: #bf5500;
}

/*--footer--*/

p.copyright-agileinfo {
    font-size: 15px;
    letter-spacing: 2px;
    color: #fff;
    font-weight: 300;
}

footer p a {
    display: inline-block;
    color: #fff;
    text-decoration: underline;
}

footer p a:hover {
    color: #fff;
    text-decoration: none;
    -webkit-transition: 0.5s all;
    -o-transition: 0.5s all;
    -moz-transition: 0.5s all;
    -ms-transition: 0.5s all;
    transition: 0.5s all;
}

footer {
    /*padding: 4em 0;*/
	padding-top: 5px;
    text-align: center;
}


/*--//footer--*/

/*-- /responsive design --*/

@media(max-width:768px) {
    h1 {
        font-size: 47px;
    }
}

@media(max-width:667px) {
    h1 {
        font-size: 45px;
    }
}

@media(max-width:640px) {
    p.copyright-agileinfo {
        letter-spacing: 1px;
    }
    h1 {
        font-size: 43px;
    }
}

@media(max-width:568px) {
    h1 {
        font-size: 40px;
    }
    p.copyright-agileinfo {
        font-size: 14px;
    }
}

@media(max-width:480px) {
    .w3l-login-form {
    margin: 0 3vw;
}
    h1 {
        font-size: 38px;
    }
    p.copyright-agileinfo {
        line-height: 1.8em;
    }
}

@media(max-width:414px) {
    h1 {
        font-size: 34px;
    }
}

@media(max-width:384px) {
    h1 {
        font-size: 30px;
    }
}

@media(max-width:320px) {
    h1 {
        font-size: 25px;
    }
    .forgot p {
        text-align: left;
    }
    .forgot {
        display: block;
    }
}

/*-- /responsive design --*/