:root {
  --primary-color: #374151;      
  --accent-color: #4ade80;       
  --bg-color: #f9fafb;           
  --text-color: #334155;         
  --border-radius: 8px;
  --font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-family);
  background-color: var(--bg-color);
  color: var(--text-color);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-width: 400px;
  max-width: 480px;
  margin: auto;
}

header {
  text-align: center;
  margin-bottom: 2rem;
}

header h1 {
  color: var(--primary-color);
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

header p {
  font-size: 1rem;
  color: #64748b; 
}

form {
  background: white;
  padding: 1.5rem;
  border-radius: var(--border-radius);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
}

input,
select {
  padding: 0.75rem;
  border-radius: var(--border-radius);
  border: 1px solid #d1d5db; /* gris claro */
  font-size: 1rem;
  width: 100%;
  background-color: #fff;
}

button {
  background-color: var(--accent-color);
  color: #ffffff;
  padding: 0.75rem;
  border: none;
  border-radius: var(--border-radius);
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.2s ease-in-out;
}

button:hover {
  background-color: #22c55e; 
}

footer {
  text-align: center;
  padding: 1rem;
  font-size: 0.9rem;
  color: #6b7280; 
  background: #f1f5f9; 
}

a {
  text-decoration: none;
  color: #4ade80;
}



.swal-popup {
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.swal-title {
  color: #374151;
  font-family: 'Segoe UI', sans-serif;
}

.swal-confirm {
  background-color: #4ade80 !important;
  color: white !important;
  border-radius: 8px !important;
  font-size: 1rem !important;
  padding: 0.5rem 1.25rem !important;
  box-shadow: none !important;
  transition: background-color 0.2s ease-in-out;
}

.swal-confirm:hover {
  background-color: #22c55e !important;
}


#note {
  font-size: 12px;
  color: #6b7280; 
}