/* Estilos para la página de autenticación */
:root {
    --primary-color: #c8a97e;
    --secondary-color: #2c1810;
    --accent-color: #ff6b6b;
    --text-color: #2c1810;
    --bg-color: #faf6f1;
    --card-bg: rgba(255, 255, 255, 0.95);
    --glass-bg: rgba(255, 255, 255, 0.8);
    --shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    --glass_shadow: 0 8px 32px rgba(200, 169, 126, 0.2);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  body {
    background-color: var(--bg-color);
    font-family: "Poppins", sans-serif;
    color: var(--text-color);
    line-height: 1.6;
  }
  
  .auth-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: var(--glass-shadow);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
  }
  
  .auth-header h1 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--secondary-color);
  }
  
  .back-to-site {
    color: var(--secondary-color);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
  }
  
  .back-to-site:hover {
    color: var(--primary-color);
  }
  
  .auth-main {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 2rem;
  }
  
  .auth-container {
    background-color: var(--card-bg);
    border-radius: 15px;
    box-shadow: var(--shadow);
    width: 100%;
    max-width: 500px;
    overflow: hidden;
    margin-top: 60px;
  }
  
  .auth-tabs {
    display: flex;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }
  
  .auth-tab {
    flex: 1;
    padding: 1rem;
    background: none;
    border: none;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-color);
    cursor: pointer;
    transition: var(--transition);
    position: relative;
  }
  
  .auth-tab.active {
    color: var(--primary-color);
  }
  
  .auth-tab.active::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--primary-color);
  }
  
  .auth-form-container {
    padding: 2rem;
    display: none;
  }
  
  .auth-form-container.active {
    display: block;
  }
  
  .auth-form-container h2 {
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
    text-align: center;
  }
  
  .form-group {
    margin-bottom: 1.5rem;
  }
  
  .form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
  }
  
  .form-group input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    font-family: inherit;
    transition: var(--transition);
  }
  
  .form-group input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(200, 169, 126, 0.2);
  }
  
  .form-group small {
    display: block;
    margin-top: 0.5rem;
    color: #666;
    font-size: 0.8rem;
  }
  
  .auth-btn {
    width: 100%;
    padding: 0.75rem;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
  }
  
  .auth-btn:hover {
    background-color: var(--secondary-color);
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .auth-container {
      max-width: 100%;
    }
  }
  
  /* Animaciones */
  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .auth-form-container.active {
    animation: fadeIn 0.3s ease-out forwards;
  }
  