/* Importar Poppins desde Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');
 

.brand-header {
	max-width: 700px;
	margin: 60px auto 40px;
	text-align: center;
	padding: 0 20px;
}

	.brand-header h1 {
		font-weight: 600;
		font-size: 32px;
		margin-bottom: 20px;
		color: #111;
	}

	.brand-header p {
		font-weight: 300;
		line-height: 1.8;
		color: #666;
		margin-bottom: 15px;
	}

.form-container {
	max-width: 550px;
	margin: 0 auto 80px;
	background: #ffffff;
	padding: 50px;
	border-radius: 12px;
	box-shadow: 0 10px 30px rgba(0,0,0,0.04);
}

	.form-container h2 {
		font-weight: 600;
		font-size: 22px;
		text-align: center;
		margin-bottom: 35px;
	}

/* Campos de entrada */
.input-group {
	margin-bottom: 20px;
}

 
input[type="text"],
input[type="email"],
input[type="url"],
input[type="tel"],
textarea,
select {
	width: 100%;
	padding: 14px 18px;
	border: 1px solid #e0e0e0;
	border-radius: 8px;
	font-family: 'Poppins', sans-serif;
	font-size: 14px;
	background-color: #fafafa;
	transition: all 0.3s ease;
	box-sizing: border-box;
}

	input:focus, textarea:focus {
		outline: none;
		border-color: #000;
		background-color: #fff;
		box-shadow: 0 4px 12px rgba(0,0,0,0.05);
	}

/* Checkboxes estilizados */
.business-types {
	margin: 25px 0;
}

	.business-types p {
		font-weight: 500;
		font-size: 14px;
		margin-bottom: 12px;
	}

.check-label {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 10px;
	font-size: 14px;
	font-weight: 400;
	cursor: pointer;
}

	.check-label input {
		width: 18px;
		height: 18px;
		accent-color: #000;
	}

/* Botonera de Archivo */
.upload-area {
	border: 1px dashed #ccc;
	padding: 30px;
	text-align: center;
	border-radius: 8px;
	background: #fdfdfd;
	margin-top: 10px;
}

.btn-add-file {
	display: inline-block;
	padding: 8px 20px;
	background: #f0f0f0;
	border-radius: 5px;
	font-size: 13px;
	font-weight: 500;
	margin-top: 10px;
	cursor: pointer;
}

/* Botón Submit Estilo Boutique */
.submit-button {
	width: 100%;
	padding: 18px;
	background: #0d1b3e; /* El azul marino oscuro de la imagen original */
	color: #fff;
	border: none;
	border-radius: 8px;
	font-weight: 500;
	font-size: 16px;
	cursor: pointer;
	margin-top: 30px;
	transition: background 0.3s ease;
}

	.submit-button:hover {
		background: #1a2a4f;
	}

.legal-footer {
	font-size: 11px;
	color: #999;
	text-align: center;
	margin-top: 25px;
	line-height: 1.6;
}
