/* Estilos generales */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Arial', sans-serif;
}

body {
	background-color: #f8faf9;
	color: #1a1a2e;
	height: 100vh;
	display: flex;
	flex-direction: column;
}

/* Header */
.main-header {
	background: linear-gradient(135deg, #0d8c5f, #12a274);
	color: white;
	padding: 15px 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.store-info {
	display: flex;
	align-items: center;
}

.store-name {
	font-size: 22px;
	font-weight: bold;
	margin-right: 15px;
}

.store-version {
	font-size: 14px;
	color: #15c78a;
}

.nav-menu {
	display: flex;
	list-style: none;
}

.nav-menu li {
	margin-left: 20px;
}

.nav-menu a {
	color: white;
	text-decoration: none;
	font-weight: 500;
	padding: 8px 15px;
	border-radius: 5px;
	transition: all 0.3s;
}

.nav-menu a:hover {
	background-color: rgba(255, 255, 255, 0.2);
}

.nav-menu a.active {
	background-color: white;
	color: #0d8c5f;
}

/* Contenedor principal */
.main-container {
	display: flex;
	flex: 1;
	overflow: hidden;
}

/* Panel izquierdo - Navegación */
.navigation-panel {
	width: 250px;
	background-color: white;
	border-right: 1px solid #e8edeb;
	padding: 20px 0;
	overflow-y: auto;
}

.nav-section {
	margin-bottom: 30px;
}

.nav-title {
	color: #718096;
	font-size: 14px;
	text-transform: uppercase;
	padding: 0 20px 10px;
	margin-bottom: 10px;
	border-bottom: 1px solid #e8edeb;
}

.nav-links {
	list-style: none;
}

.nav-link {
	padding: 12px 20px;
	display: flex;
	align-items: center;
	cursor: pointer;
	transition: all 0.3s;
}

.nav-link:hover {
	background-color: #e8f8f2;
}

.nav-link.active {
	background-color: #0d8c5f;
	color: white;
}

.nav-link i {
	margin-right: 10px;
	font-size: 18px;
}

/* Panel derecho - Contenido */
.content-panel {
	flex: 1;
	padding: 30px;
	background-color: #f8faf9;
	overflow-y: auto;
}

.content-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 30px;
	padding-bottom: 15px;
	border-bottom: 2px solid #12a274;
}

.content-title {
	color: #0d8c5f;
	font-size: 24px;
}

.btn {
	padding: 10px 20px;
	border-radius: 5px;
	font-weight: bold;
	cursor: pointer;
	transition: all 0.3s;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	border: none;
	font-size: 14px;
}

.btn-primary {
	background-color: #0d8c5f;
	color: white;
}

.btn-primary:hover {
	background-color: #12a274;
}

.btn-secondary {
	background-color: white;
	color: #0d8c5f;
	border: 1px solid #0d8c5f;
}

.btn-secondary:hover {
	background-color: #e8f8f2;
}

/* Formulario de registro */
.user-form {
	/*max-width: 900px;*/
	max-width: 90%;
	background-color: white;
	padding: 30px;
	border-radius: 10px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-section {
	margin-bottom: 30px;
}

.section-title {
	color: #0d8c5f;
	margin-bottom: 20px;
	padding-bottom: 10px;
	border-bottom: 1px solid #e8edeb;
	font-size: 18px;
}

.form-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
	gap: 20px;
}

.form-group {
	margin-bottom: 15px;
}

.form-label {
	display: block;
	margin-bottom: 8px;
	font-weight: 500;
	color: #0d8c5f;
	font-size: 14px;
}

.form-label.required::after {
	content: " *";
	color: #ef4444;
}

.form-control {
	width: 100%;
	padding: 10px 15px;
	border: 1px solid #d1d9d6;
	border-radius: 5px;
	font-size: 14px;
	transition: all 0.3s;
}

.form-control:focus {
	outline: none;
	border-color: #12a274;
	box-shadow: 0 0 0 3px rgba(18, 162, 116, 0.1);
}

.social-input {
	display: flex;
	align-items: center;
}

.social-icon {
	width: 35px;
	height: 35px;
	background-color: #e8f8f2;
	border: 1px solid #d1d9d6;
	border-right: none;
	border-radius: 5px 0 0 5px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #0d8c5f;
}

.social-control {
	border-radius: 0 5px 5px 0;
	flex: 1;
}

.form-actions {
	display: flex;
	justify-content: flex-end;
	gap: 15px;
	margin-top: 30px;
	padding-top: 20px;
	border-top: 1px solid #e8edeb;
}

.password-strength {
	height: 5px;
	background-color: #e8edeb;
	border-radius: 5px;
	margin-top: 8px;
	overflow: hidden;
}

.strength-bar {
	height: 100%;
	width: 0%;
	background-color: #718096;
	transition: all 0.3s;
}

/* Responsive */
@media (max-width: 768px) {
	.main-container {
		flex-direction: column;
	}
	
	.navigation-panel {
		width: 100%;
		height: auto;
		border-right: none;
		border-bottom: 1px solid #e8edeb;
	}
	
	.form-grid {
		grid-template-columns: 1fr;
	}
	
	.form-actions {
		flex-direction: column;
	}
	
	.btn {
		width: 100%;
		justify-content: center;
	}
}