body {
	font-family: 'Poppins', sans-serif;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	min-height: 100vh;
	padding: 20px 0;
}

.form-container {
	background: white;
	border-radius: 15px;
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
	overflow: hidden;
	margin: 20px auto;
	max-width: 800px;
}

.form-header {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;
	padding: 30px;
	text-align: center;
}

.form-header h2 {
	margin: 0;
	font-weight: 600;
	font-size: 2rem;
}

.form-header p {
	margin: 10px 0 0 0;
	opacity: 0.9;
	font-weight: 300;
}

.form-body {
	padding: 40px;
}

.section-title {
	color: #333;
	font-weight: 600;
	font-size: 1.2rem;
	margin-bottom: 20px;
	padding-bottom: 10px;
	border-bottom: 2px solid #667eea;
	position: relative;
}

.section-title::after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 50px;
	height: 2px;
	background: #764ba2;
}

.form-group label {
	font-weight: 500;
	color: #333;
	margin-bottom: 8px;
}

.required {
	color: #dc3545;
}

.form-control {
	border: 2px solid #e9ecef;
	border-radius: 8px;
	padding: 12px 15px;
	font-size: 0.95rem;
	transition: all 0.3s ease;
}

.form-control:focus {
	border-color: #667eea;
	box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
}

.form-control:hover {
	border-color: #adb5bd;
}

.input-group-text {
	background: #667eea;
	color: white;
	border: 2px solid #667eea;
	border-radius: 8px 0 0 8px;
}

.input-group .form-control {
	border-left: 0;
	border-radius: 0 8px 8px 0;
}

.input-group .form-control:focus {
	border-left: 0;
}

.btn-submit {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	border: none;
	padding: 15px 40px;
	font-weight: 600;
	font-size: 1.1rem;
	border-radius: 8px;
	transition: all 0.3s ease;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.btn-submit:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.alert-info {
	border-left: 4px solid #17a2b8;
	border-radius: 8px;
	background: #d1ecf1;
	border-color: #bee5eb;
}

.section-divider {
	margin: 35px 0;
}

/* Animaciones */
.form-container {
	animation: slideUp 0.6s ease-out;
}

@
keyframes slideUp {from { opacity:0;
	transform: translateY(30px);
}

to {
	opacity: 1;
	transform: translateY(0);
}

}
.form-group {
	animation: fadeIn 0.8s ease-out forwards;
	opacity: 0;
}

.form-group:nth-child(1) {
	animation-delay: 0.1s;
}

.form-group:nth-child(2) {
	animation-delay: 0.2s;
}

.form-group:nth-child(3) {
	animation-delay: 0.3s;
}

.form-group:nth-child(4) {
	animation-delay: 0.4s;
}

.form-group:nth-child(5) {
	animation-delay: 0.5s;
}

@
keyframes fadeIn {to { opacity:1;
	
}

}

/* Responsive adjustments */
@media ( max-width : 768px) {
	.form-body {
		padding: 25px;
	}
	.form-header {
		padding: 25px;
	}
	.form-header h2 {
		font-size: 1.6rem;
	}
}