:root {
    --primary-color: #2563eb; /* Azul moderno */
    --secondary-color: #64748b;
    --success-color: #22c55e;
    --danger-color: #ef4444;
    --bg-color: #f8fafc;
    --card-bg: #ffffff;
}

body {
    font-family: 'Inter', system-ui, sans-serif;
    background-color: var(--bg-color);
    margin: 0;
    color: #1e293b;
}

/* Contenedor Principal */
.container {
    max-width: 1000px;
    margin: 2rem auto;
    padding: 2rem;
    background: var(--card-bg);
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

/* Botones Modernos */
.btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary { background: var(--primary-color); color: white; }
.btn-primary:hover { background: #1d4ed8; transform: translateY(-1px); }

/* Inputs Estilizados */
input {
    width: 100%;
	background-color: #ffffff;
    margin: 8px 0;
    border: 1px solid #cbd5e1;
    border-radius: 5px;
    box-sizing: border-box;
	padding: 10px 36px 10px 14px;
}
input:focus {
  border-color: #3b82f6;
  outline: none;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}

