@charset "utf-8";
/*
@font-face {
    font-family:"Signika";
    src:url(../../fonts/Signika-Regular.ttf) format("truetype");
}
@font-face {
    font-family:"Myndrain";
    src:url(../../fonts/Myndrain.ttf) format("truetype");
}
@font-face {
    font-family:"DroidSans";
    src:url(../../fonts/DroidSans.ttf) format("truetype");
}
@font-face {
    font-family:"Roboto";
    src:url(../../fonts/Roboto-Regular.ttf) format("truetype");
}
@font-face {
    font-family:"OpenSansLight";
    src:url(../../fonts/OpenSans-Light.ttf) format("truetype");
}
@font-face {
    font-family:"OpenSans";
    src:url(../../fonts/OpenSans.ttf) format("truetype");
}
@font-face {
    font-family:"OpenSansSB";
    src:url(../../fonts/OpenSans-SemiBold.ttf) format("truetype");
}
@font-face {
    font-family:"OpenSansB";
    src:url(../../fonts/OpenSans-Bold.ttf) format("truetype");
}
@font-face {
    font-family:"Segoe-UI-Light";
    src:url(../../fonts/Segoe-UI-Light.ttf) format("truetype");
}
@font-face {
    font-family:"Segoe-UI";
    src:url(../../fonts/Segoe-UI.ttf) format("truetype");
}
*/

:root {
	--primary-color: #0a4a7a;
	--secondary-color: #28a745;
	--accent-color: #ff6b35;
	--light-color: #f8f9fa;
	--dark-color: #343a40;
	--gray-color: #6c757d;
	--sig-color: #5f5f5f;
	--hys-color: chocolate;
	--carousel-overlay: steelblue; /*rgba(10, 105, 30, 0.6);*/
}
        
* {
	margin: 0;
    padding: 0;
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
		    box-sizing: border-box;
}

body {
	font-family: 'Open Sans', sans-serif;
	color: var(--dark-color);
	height: 100vh;
	/*overflow: hidden;*/
}

h1, h2, h3, h4, h5 {
	font-family: 'Montserrat', sans-serif;
	font-weight: 600;
}

.container-fluid {
	height: 100vh;
	padding: 0;
}

/* Panel Izquierdo */
.left-panel {
	width: 460px;
	background-color: #f8f9fa;
	display: flex;
	flex-direction: column;
	position: fixed;
	left: 0;
	top: 0;
	bottom: 0;
	box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
}

.left-header {
	height: 84px;
	background-color: white;
	display: flex;
	align-items: center;
	justify-content: center;
	border-bottom: 1px solid #eaeaea;
}

.logo-container {
	display: flex;
	align-items: center;
}

.logo-text {
	font-size: 1.8rem;
	font-weight: 700;
	color: var(--primary-color);
	margin-left: 10px;
}

.logo-text span {
	color: var(--accent-color);
}

.carousel-container {
	flex: 1;
	display: flex;
	flex-direction: column;
}

.carousel-section {
	flex: 1;
	overflow: hidden;
}

.carousel-item {
	height: 100%;
	background-size: cover;
	background-position: center;
	position: relative;
}

.carousel-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: var(--carousel-overlay);
}

.carousel-caption {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: white;
	text-align: center;
	width: 100%;
	padding: 0 20px;
}

 .carousel-icon {
	font-size: 3.5rem;
	margin-bottom: 20px;
	display: block;
}

 .carousel-caption h1 {
	font-size: 2rem;
	margin-bottom: 10px;
}

.carousel-caption h5 {
	font-size: 1.5rem;
	margin-bottom: 10px;
}

  		.carousel-caption p {
            font-size: 1rem;
            opacity: 0.9;
        }

.left-footer {
	height: 84px;
	background-color: white;
	display: flex;
	align-items: center;
	justify-content: center;
	border-top: 1px solid #eaeaea;
	padding: 0 20px;
	text-align: center;
}

.footer-text {
	font-size: 0.9rem;
	color: var(--dark-color);
	margin: 0;
}

/* Panel Derecho */
.right-panel {
	margin-left: 460px;
	height: 100vh;
	/*display: flex;
	align-items: center;
	justify-content: center;*/
	background-color: white;
	overflow-y: auto;
}

.form-container {
	width: 100%;
	max-width: 680px;
	padding: 20px 40px;
	margin-left: auto; margin-right: auto;
}

.form-title {
	color: var(--primary-color);
	margin-bottom: 10px;
	text-align: center;
}

.form-subtitle {
	color: var(--dark-color);
	margin-bottom: 30px;
	text-align: center;
	font-size: 1.1rem;
}

.form-label {
	font-weight: 600;
	color: var(--primary-color);
	margin-bottom: 5px;
}

.form-control {
	border: 1px solid #ced4da;
	border-radius: 4px;
	padding: 6px 15px; /*10px 15px;*/
	transition: all 0.3s;
}

.form-control:focus {
	border-color: var(--primary-color);
	box-shadow: 0 0 0 0.2rem rgba(10, 74, 122, 0.25);
}

.form-check-input:checked {
	background-color: var(--primary-color);
	border-color: var(--primary-color);
}

.form-check-label {
	color: var(--dark-color);
}

.form-check-label a {
	color: var(--primary-color);
	text-decoration: none;
}

.form-check-label a:hover {
	text-decoration: underline;
}

.btn-submit {
	background-color: var(--accent-color);
	color: white;
	border: none;
	padding: 12px 30px;
	border-radius: 4px;
	font-weight: 600;
	font-size: 1.1rem;
	width: 100%;
	transition: all 0.3s;
}

.btn-submit:hover {
	background-color: #e05a2b;
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.btn-submit:disabled {
	background-color: #cccccc;
	cursor: not-allowed;
	transform: none;
	box-shadow: none;
}

.back-link {
	text-align: center;
	margin-top: 20px;
}

.back-link a {
	color: var(--primary-color);
	text-decoration: none;
	display: inline-flex;
	align-items: center;
}

.back-link a:hover {
	text-decoration: underline;
}

.error-message {
	color: #dc3545;
	font-size: 0.875rem;
	margin-top: 5px;
	display: none;
}

.is-invalid {
	border-color: #dc3545;
}

/* Responsive */
@media (max-width: 992px) {
	.left-panel {
		position: relative;
		width: 100%;
		height: 50vh;
	}

	.right-panel {
		margin-left: 0;
		height: auto;
	}

	.carousel-section {
		height: calc(50vh - 168px);
	}
	
			.carousel-caption h1 {
                font-size: 1.8rem;
            }
            
            .carousel-icon {
                font-size: 2.8rem;
            }	
	
}

@media (max-width: 768px) {
	.form-container {
		padding: 20px;
	}
	
	 .carousel-caption h1 {
		font-size: 1.5rem;
	}

	.carousel-icon {
		font-size: 2.2rem;
		margin-bottom: 15px;
	}	
}

