:root {
    --primary: #6c5ce7;
    --primary-dark: #5649c0;
    --secondary: #00cec9;
    --dark: #1a1a2e;
    --darker: #16213e;
    --light: #e0e0e0;
    --lighter: #f8f9fa;
    --danger: #e74c3c;
    --success: #2ecc71;
    --warning: #f39c12;
}

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

:disabled{
    cursor: not-allowed !important;
    opacity: 0.5 !important;
}

body{
  font-family: 'Poppins', sans-serif;
  background-color: var(--dark);
  background-image: 
      radial-gradient(circle at 20% 30%, rgba(108, 92, 231, 0.85) 0%, rgba(6, 176, 93, 0.7) 40%, transparent 70%), 
      radial-gradient(circle at 85% 20%, rgba(255, 20, 147, 0.8) 0%, rgba(0, 255, 255, 0.6) 45%, transparent 75%), 
      radial-gradient(circle at 90% 80%, rgba(255, 215, 0, 0.75) 0%, rgba(255, 105, 180, 0.5) 50%, transparent 80%),
      radial-gradient(circle at 10% 85%, rgba(59, 130, 246, 0.8) 0%, rgba(139, 92, 246, 0.6) 50%, transparent 75%);
  background-blend-mode: soft-light, overlay, normal, normal;
  align-items: center;
  min-height: 100vh;
  margin: 0;
  padding: 20px;
}


  /* Auth Status */
  #authStatus {
    position: fixed;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
    z-index: 1000;
    display: flex;
    align-items: center;
    font-size: 14px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
  }

  #authStatus button {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    margin-left: 10px;
    padding: 5px;
    border-radius: 3px;
    transition: background 0.3s;
  }

  #authStatus button:hover {
    background: rgba(255, 255, 255, 0.2);
  }

  /* Logo y Títulos */
  .logo {
    width: 200px;
    height: auto;
    border-radius: 8px;
  }

  .title-container h1 {
    color: #00cec9;
    font-size: 2rem;
    margin: 0;
  }

  .title-container .subtitle {
    color: rgba(224, 224, 224, 0.8);
    margin: 5px 0 0;
    font-size: 0.9rem;
  }

  /* Artist Card */
  .artist-card {
    background: rgba(58, 58, 90, 0.3);
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 40px;
    border: 1px solid rgba(108, 92, 231, 0.2);
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%;
    background: 
      radial-gradient(circle at 20% 30%, rgba(108, 92, 231, 0.1) 0%, transparent 50%),
      radial-gradient(circle at 80% 70%, rgba(0, 206, 201, 0.1) 0%, transparent 50%);
    z-index: 0;
  }
  
  .artist-content {
    position: relative;
    z-index: 1;
  }

  .artist-title {
    color: #00cec9;
    font-size: 2rem;
    margin: 0 0 10px 0;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .artist-subtitle {
    color: rgba(224, 224, 224, 0.8);
    margin-bottom: 20px;
    display: block;
  }

  /* Status */
  .contract-status {
    display: block;
    padding: 15px;
    border-radius: 8px;
    margin: 15px 0;
    font-weight: 600;
    border-left: 5px solid;
  }

  .status-denied {
    border-left-color: #e74c3c;
    background: rgba(231, 76, 60, 0.1);
  }

  .status-modify {
    border-left-color: #f39c12;
    background: rgba(243, 156, 18, 0.1);
  }

  .status-suspended {
    border-left-color: #9b59b6;
    background: rgba(155, 89, 182, 0.1);
  }

  .status-checking {
    border-left-color: #3498db;
    background: rgba(52, 152, 219, 0.1);
  }

  /* Insignias */
  .insignia-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px 0;
  }

  .insignia-image {
    width: 30px;
    height: 30px;
    object-fit: contain;
    border-radius: 50%;
  }

  /* Info Items */
  .artist-info {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 30px;
  }

  .info-item {
    background: rgba(58, 58, 90, 0.5);
    padding: 15px;
    border-radius: 8px;
    border-left: 3px solid #6c5ce7;
  }

  .info-label {
    font-weight: 600;
    color: #00cec9;
    display: block;
    margin-bottom: 8px;
    font-size: 0.85rem;
    text-transform: uppercase;
  }

  .info-value {
    font-size: 1rem;
    color: #e0e0e0;
  }

  /* Staff Access */
  .staffaccess {
    background: rgb(7 166 255 / 72%);
    border: 1px solid rgb(18 243 208 / 86%);
    border-radius: 8px;
    padding: 20px;
    margin: 30px 0;
  }

  .staffaccess h3 {
    color: #f39c12;
    margin-top: 0;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .staffaccess form {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    flex-wrap: wrap;
  }

  .staffaccess input[type="text"] {
    flex: 1;
    min-width: 200px;
    padding: 10px 15px;
    border: 1px solid rgba(108, 92, 231, 0.3);
    border-radius: 6px;
    background: rgba(26, 26, 46, 0.7);
    color: #e0e0e0;
  }

  /* Songs Section */
  .songs-section {
    margin: 50px 0;
  }

  .section-title {
    color: #00cec9;
    font-size: 1.8rem;
    margin-bottom: 25px;
    position: relative;
    padding-left: 20px;
  }

  .section-title::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 25px;
    background: #6c5ce7;
    border-radius: 3px;
  }

  .songs-table-container {
    overflow-x: auto;
    border-radius: 8px;
  }

  .songs-table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(58, 58, 90, 0.3);
  }

  .songs-table th {
    background: rgba(108, 92, 231, 0.3);
    color: #e0e0e0;
    padding: 15px;
    text-align: left;
    font-weight: 600;
  }

  .songs-table td {
    color: #e0e0e0;
    padding: 12px 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .songs-table tr:hover {
    background: rgba(108, 92, 231, 0.1);
  }

  /* Contract Section */
  .contract-section {
    margin: 40px 0;
  }

  .contract-section details {
    background: rgba(58, 58, 90, 0.3);
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
  }

  .contract-section summary {
    background: rgba(108, 92, 231, 0.3);
    color: white;
    padding: 15px 20px;
    cursor: pointer;
    font-weight: 600;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .contract-section summary::after {
    content: '+';
    font-size: 1.2rem;
    transition: transform 0.3s;
  }

  .contract-section details[open] summary::after {
    transform: rotate(45deg);
  }

  .contract-content {
    padding: 20px;
  }

  /* Formularios */
  .loginForm {
    position: fixed;
    background: #1a1a2e;
    width: 100%;
    height: 100%;
    top: 0;
    overflow-y: auto;
    z-index: 1000;
    display: flex;
    justify-content: center;
    flex-direction: column;
    flex-wrap: nowrap;
  }
  .logo-title {
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
  }
  .form-group {
    margin-bottom: 1.5rem;
  }

  .form-label {
    display: block;
    margin-bottom: 0.5rem;
    color: rgba(224, 224, 224, 0.8);
  }

  .form-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(74, 74, 106, 0.5);
    border-radius: 0.5rem;
    background-color: rgba(58, 58, 90, 0.5);
    color: #e0e0e0;
    transition: all 0.3s ease;
  }

  .form-input:focus {
    outline: none;
    border-color: #00cec9;
    box-shadow: 0 0 0 3px rgba(0, 206, 201, 0.3);
  }

  /* Buttons */
  .btn-block {
    width: 100%;
  }

  .btn-download {
    background-color: #6c5ce7;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
  }

  .btn-download:hover {
    background-color: #5649c0;
  }

  /* Search Container */
  .search-container {
    background: white;
    padding: 40px;
    border-radius: 16px;
    text-align: center;
    margin: 0 auto;
    max-width: 500px;
  }

  .input-and-button-group {
    display: flex;
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(108, 92, 231, 0.2);
    max-width: 400px;
    margin: 0 auto;
  }

  .input-and-button-group input[type="text"] {
    flex: 1;
    padding: 14px 20px;
    border: none;
    background: rgba(108, 92, 231, 0.05);
    color: #333;
  }

  #goButton {
    background: linear-gradient(135deg, #6c5ce7 0%, #00cec9 100%);
    color: white;
    border: none;
    padding: 14px 25px;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  #goButton:hover {
    background: linear-gradient(135deg, #5649c0 0%, #00b4b0 100%);
  }

/* ===== FOOTER RESPONSIVO CON REDES ARRIBA ===== */
footer {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin-top: 80px;
  padding: 40px 20px 20px;
  background: radial-gradient(circle at 10% 20%, rgb(108 92 231) 0%, #9d21b8c4 50%), radial-gradient(circle at 90% 80%, rgb(53 255 8) 0%, #903232 50%);
  border-top: 2px solid rgba(108, 92, 231, 0.4);
  position: relative;
  overflow: hidden;
  z-index: 998;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Redes sociales en la parte superior */
.footer-socials-top {
  margin-bottom: 40px;
  text-align: center;
}

.footer-socials-top .footer-imagenes {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
}

.footer-socials-top .footer-imagenes nav {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}

/* Estilo ORIGINAL para los iconos de redes sociales */
.footer-socials-top .social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(108, 92, 231, 0.1);
  color: #00cec9;
  font-size: 1.2rem;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid rgba(108, 92, 231, 0.3);
}

.footer-socials-top .social-icon:hover {
  background: #6c5ce7;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(108, 92, 231, 0.3);
}

.footer-socials-top .social-icon img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  transition: filter 0.3s ease;
}

/* Layout para PC (> 768px) */
@media (min-width: 769px) {
  .footer-main {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 50px;
    align-items: start;
    margin-bottom: 40px;
  }

  .footer-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .footer-right {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }

  .footer-bottom {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    margin-top: 25px;
  }
  .logo-title{
    display: flex;
    justify-content: center;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
  }
}

/* Layout para Tablets (600px - 768px) */
@media (min-width: 600px) and (max-width: 768px) {
  .footer-main {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 30px;
  }

  .footer-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
  }

  .footer-right {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    margin-top: 20px;
  }
  .logo-title{
    display: flex;
    justify-content: center;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
  }
}

/* Layout para Móviles (< 600px) */
@media (max-width: 599px) {
  .footer-main {
    display: flex;
    flex-direction: column;
    gap: 35px;
    margin-bottom: 25px;
  }

  .footer-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
    order: 1;
  }

  .footer-right {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    order: 2;
  }

  .footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    margin-top: 20px;
    order: 3;
  }
  
  .footer-socials-top .footer-imagenes {
    gap: 10px;
  }
  
  .footer-socials-top .footer-imagenes nav {
    gap: 10px;
  }
  
  .footer-socials-top .social-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  
  .footer-socials-top .social-icon img {
    width: 20px;
    height: 20px;
  }
}

/* Estilos comunes para footer-left */
.footer-logo {
  max-width: 200px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.footer-logo:hover {
  transform: scale(1.03);
}

.studio-info {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.studio-name {
  font-size: 1.4rem;
  color: #00cec9;
  font-weight: 700;
  text-shadow: 0 0 10px rgba(0, 206, 201, 0.4);
}

.studio-tagline {
  color: rgba(224, 224, 224, 0.8);
  font-size: 0.95rem;
  font-style: italic;
}

/* Estilos para footer-right (columnas) */
.footer-column {
  text-align: left;
}

@media (max-width: 768px) {
  .footer-column {
    text-align: center;
  }
}

.footer-column h4 {
  color: #00cec9;
  font-size: 1.1rem;
  margin-bottom: 18px;
  font-weight: 600;
  position: relative;
  padding-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
}

@media (min-width: 769px) {
  .footer-column h4 {
    justify-content: flex-start;
  }
}

.footer-column h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: #6c5ce7;
}

@media (max-width: 768px) {
  .footer-column h4::after {
    left: 50%;
    transform: translateX(-50%);
  }
}

.footer-column p {
  margin-bottom: 12px;
}

.footer-column a {
  color: rgba(224, 224, 224, 0.85);
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 0;
  font-size: 0.95rem;
}

.footer-column a:hover {
  color: #00cec9;
  transform: translateX(5px);
}

@media (max-width: 768px) {
  .footer-column a {
    justify-content: center;
  }
  
  .footer-column a:hover {
    transform: translateX(0);
  }
}

/* Estilos para footer-bottom */
.footer-bottom {
  color: rgba(224, 224, 224, 0.7);
  font-size: 0.9rem;
}

.footer-bottom p {
  margin: 8px 0;
}

.footer-bottom a {
  color: rgba(224, 224, 224, 0.8);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-bottom a:hover {
  color: #00cec9;
  text-decoration: underline;
}

/* Estilos para Status y Calendario */
.status-section, .calendar-section {
  background: linear-gradient(45deg, rgba(0, 0, 0, 0.8), rgba(0, 206, 201, 0.1), rgba(255, 255, 255, 0.05), rgba(46, 204, 113, 0.1));
  border-radius: 8px;
  margin: 20px auto;
  padding: 10px;
  max-width: 1200px;
  border: 1px solid rgba(108, 92, 231, 0.3);
}

.status-section summary, .calendar-section summary {
  background: linear-gradient(45deg, #00cec9, #6c5ce7, #9b59b6);
  color: white;
  padding: 12px 20px;
  cursor: pointer;
  border-radius: 6px;
  font-weight: 600;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.status-section summary:hover, .calendar-section summary:hover {
  background: linear-gradient(45deg, #6c5ce7, #00cec9, #3498db);
}

.status-section summary h3, .calendar-section summary h2 {
  margin: 0;
  font-size: 1.1rem;
}

.calendar-section summary h2 {
  font-size: 1.3rem;
}

.status-link {
  display: inline-block;
  color: gold;
  text-decoration: none;
  margin: 15px 0;
  padding: 8px 15px;
  background: rgba(255, 215, 0, 0.1);
  border-radius: 4px;
  transition: all 0.3s;
}

.status-link:hover {
  background: rgba(255, 215, 0, 0.2);
  text-decoration: underline;
}

.status-iframe, .calendar-iframe {
  width: 100%;
  border: none;
  border-radius: 6px;
  margin-top: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.status-iframe {
  height: 500px;
}

.calendar-iframe {
  height: 600px;
}

.calendar-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  margin: 20px 0;
}

.calendar-logo {
  max-width: 150px;
  height: auto;
}

.calendar-link {
  color: #00cec9;
  text-decoration: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: rgba(0, 206, 201, 0.1);
  border-radius: 6px;
  transition: all 0.3s;
}

.calendar-link:hover {
  background: rgba(0, 206, 201, 0.2);
  transform: translateY(-2px);
}

/* Enlaces deshabilitados */
.disabled-link {
  color: rgba(224, 224, 224, 0.5) !important;
  cursor: not-allowed;
  pointer-events: none;
  opacity: 0.6;
}

/* Responsive para iframes y redes */
@media (max-width: 768px) {
  .status-iframe {
    height: 400px;
  }
  
  .calendar-iframe {
    height: 400px;
  }
  
  .footer-socials-top .footer-imagenes nav {
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .status-iframe {
    height: 300px;
  }
  
  .calendar-iframe {
    height: 300px;
  }
  
  .footer-socials-top .footer-imagenes {
    gap: 8px;
  }
  
  .footer-socials-top .footer-imagenes nav {
    gap: 8px;
  }
  
  .footer-socials-top .social-icon {
    width: 35px;
    height: 35px;
    font-size: 0.9rem;
  }
  
  .footer-socials-top .social-icon img {
    width: 18px;
    height: 18px;
  }
}

.auth-container {
    background-color: var(--darker);
    padding: 2.5rem;
    border-radius: 1rem;
    box-shadow: 
        0 10px 25px rgba(0, 0, 0, 0.3),
        0 0 15px rgba(108, 92, 231, 0.2);
    width: 100%;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.auth-container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle, rgba(108, 92, 231, 0.1) 0%, transparent 70%) no-repeat,
        radial-gradient(circle, rgba(0, 206, 201, 0.1) 0%, transparent 70%) no-repeat;
    background-position: 30% 30%, 70% 70%;
    animation: rotate 20s linear infinite;
    z-index: 0;
}

@keyframes rotate {
    100% {
        transform: rotate(360deg);
    }
}

.auth-content {
    position: relative;
    z-index: 1;
}

.logo {
    max-width: 150px;
    margin: 0 auto 1.5rem;
    border-radius: 0.75rem;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 0 8px rgba(108, 92, 231, 0.5));
}

.logo:hover {
    transform: scale(1.05);
}

.title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 0.5rem;
    text-align: center;
    text-shadow: 0 0 8px rgba(0, 206, 201, 0.5);
}

.subtitle {
    font-size: 1.1rem;
    color: rgba(224, 224, 224, 0.8);
    margin-bottom: 1.5rem;
    text-align: center;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: rgba(224, 224, 224, 0.8);
}

.form-label small {
    font-size: 0.8rem;
    opacity: 0.7;
    font-style: italic;
    display: block;
    margin-top: 0.25rem;
}

.form-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(74, 74, 106, 0.5);
    border-radius: 0.5rem;
    background-color: rgba(58, 58, 90, 0.5);
    color: var(--light);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(0, 206, 201, 0.3);
}

.form-input::placeholder {
    color: rgba(160, 160, 176, 0.7);
}

.form-select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(74, 74, 106, 0.5);
    border-radius: 0.5rem;
    background-color: rgba(58, 58, 90, 0.5);
    color: var(--light);
    font-size: 1rem;
    transition: all 0.3s ease;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23e0e0e0' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 16px;
}

.form-textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(74, 74, 106, 0.5);
    border-radius: 0.5rem;
    background-color: rgba(58, 58, 90, 0.5);
    color: var(--light);
    font-size: 1rem;
    transition: all 0.3s ease;
    resize: vertical;
    min-height: 100px;
}

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.9rem;
    color: rgba(224, 224, 224, 0.9);
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    border-radius: 0.25rem;
    border: 1px solid rgba(74, 74, 106, 0.5);
    background-color: rgba(58, 58, 90, 0.5);
    cursor: pointer;
}

.checkbox-label input[type="checkbox"]:checked {
    background-color: var(--primary);
    border-color: var(--primary);
}

.form-section {
    background: rgba(58, 58, 90, 0.2);
    border-radius: 0.75rem;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-left: 4px solid var(--primary);
}

.form-section-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-section-title i {
    font-size: 1rem;
}

.info-text {
    background: rgba(0, 206, 201, 0.1);
    border: 1px solid rgba(0, 206, 201, 0.3);
    border-radius: 0.5rem;
    padding: 0.75rem 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: rgba(224, 224, 224, 0.8);
}

.character-counter {
    font-size: 0.8rem;
    color: rgba(224, 224, 224, 0.6);
    text-align: right;
    margin-top: 0.25rem;
}

.character-counter.warning {
    color: var(--warning);
}

.character-counter.error {
    color: var(--danger);
}

.phone-wrapper {
    display: flex;
    gap: 1rem;
}

.phone-wrapper .phone-prefix {
    flex: 0 0 150px;
}

.phone-wrapper .phone-number {
    flex: 1;
}

.boton {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    gap: 0.5rem;
}

.boton-primary {
    background-color: var(--primary);
    color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.boton-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.boton-primary:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.boton-block {
    width: 100%;
}

.loading-spinner {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.hidden {
    display: none !important;
}

.error-message {
    color: var(--danger);
    font-size: 0.9rem;
    margin-top: 0.5rem;
    display: none;
}

.footer {
    font-size: 0.9rem;
    color: rgba(136, 136, 136, 0.8);
    margin-top: 2rem;
    text-align: center;
}

.footer a {
    color: var(--secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: var(--primary);
    text-decoration: underline;
}

.user-info {
    background-color: rgba(58, 58, 90, 0.3);
    padding: 1rem;
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
    border-left: 4px solid var(--primary);
}

.user-email {
    font-weight: 600;
    color: var(--secondary);
}

.staff-badge {
    background-color: var(--warning);
    color: var(--darker);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    margin-left: 0.5rem;
}

.verified-team-badge {
    background-color: var(--success);
    color: var(--darker);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    margin-left: 0.5rem;
}

.portal-section {
    margin-top: 1.5rem;
}

.portal-title {
    font-size: 1.25rem;
    color: var(--secondary);
    margin-bottom: 1rem;
    text-align: center;
}

.portal-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.boton-portal {
    background-color: rgba(108, 92, 231, 0.2);
    color: var(--light);
    border: 1px solid var(--primary);
}

.boton-portal:hover {
    background-color: rgba(108, 92, 231, 0.4);
}

.boton-logout {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: rgba(224, 224, 224, 0.6);
    font-size: 1.25rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.boton-logout:hover {
    color: var(--danger);
}

/* Tabs styling */
.auth-tabs {
    display: flex;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(74, 74, 106, 0.5);
}

.auth-tab {
    flex: 1;
    padding: 0.75rem;
    text-align: center;
    cursor: pointer;
    color: rgba(224, 224, 224, 0.7);
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
}

.auth-tab.active {
    color: var(--secondary);
    border-bottom: 2px solid var(--secondary);
}

.auth-tab:hover {
    color: var(--secondary);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* Modal styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    overflow-y: auto;
}

.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #111;
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    animation: modalFadeIn 0.3s ease-out;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translate(-50%, -48%);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

.modal-logo {
    width: 120px;
    height: auto;
    margin: 0 auto 20px;
    display: block;
}

.modal-text {
    margin: 20px 0;
    color: #f0f0f0;
    font-size: 15px;
    line-height: 1.6;
    text-align: left;
}

.modal-text n {
    color: #4CAF50;
    font-weight: bold;
}

.modal-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 25px;
}

.modal-button {
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.modal-button.cancel {
    background-color: #444;
    color: white;
}

.modal-button.cancel:hover {
    background-color: #555;
}

.modal-button.continue {
    background-color: #4CAF50;
    color: white;
}

.modal-button.continue:hover {
    background-color: #45a049;
}

/* Floating button styles */
.floating-btn {
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.floating-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}
.sub-btn {
    transition: all 0.3s ease;
    transform: scale(0);
    opacity: 0;
}
.sub-btn.show {
    transform: scale(1);
    opacity: 1;
}
.help-btn {
    width: 100%;
    text-align: left;
    padding: 12px 16px;
    margin-bottom: 8px;
    border-radius: 8px;
    background-color: #f9fafb;
    border: 1px solid #e5e7eb;
    cursor: pointer;
    transition: all 0.2s ease;
}
.help-btn:hover {
    background-color: #f3f4f6;
    border-color: #d1d5db;
}
.help-btn i {
    margin-right: 8px;
    color: #10b981;
}
.breadcrumb {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    color: #6b7280;
    margin-bottom: 1rem;
}
.breadcrumb a {
    color: #3b82f6;
    text-decoration: none;
    cursor: pointer;
}
.breadcrumb a:hover {
    text-decoration: underline;
}
.breadcrumb span {
    margin: 0 0.5rem;
}
.content-container {
    display: none;
    position: fixed;
    bottom: 24px;
    right: 32px;
    width: 320px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    z-index: 40;
    padding: 20px;
    max-height: 80vh;
    overflow-y: auto;
}
.content-container.active {
    display: block;
    animation: fadeIn 0.3s ease forwards;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Status pages and calendar */
.status-section, .calendar-section {
    margin-top: 1.5rem;
    text-align: left;
}

.status-iframe, .calendar-iframe {
    width: 100%;
    height: 200px;
    border: 1px solid rgba(74, 74, 106, 0.5);
    border-radius: 0.5rem;
    margin-top: 0.5rem;
}

.calendar-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 0.5rem 0;
}

.calendar-logo {
    width: 40px;
    height: auto;
    border-radius: 0.25rem;
}

.calendar-link {
    color: var(--secondary);
    text-decoration: none;
    font-size: 0.9rem;
}

/* Timer circle for verification */
.timer-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 4px solid var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--secondary);
}

/* Responsive */
@media (max-width: 768px) {
    .auth-container {
        padding: 1.5rem;
        max-width: 100%;
    }
    
    .title {
        font-size: 1.75rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .phone-wrapper {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .phone-wrapper .phone-prefix {
        flex: 1;
    }
}

@media (min-width: 768px) {
    .modal-content {
        max-width: 600px;
        padding: 30px;
    }
    
    .modal-text {
        font-size: 16px;
        line-height: 1.7;
    }
    
    .modal-buttons {
        flex-direction: row;
        justify-content: center;
        gap: 15px;
    }
    
    .modal-button {
        width: auto;
        min-width: 140px;
    }
}

@media (max-width: 480px) {
    .modal-content {
        width: 95%;
        padding: 20px 15px;
        border-radius: 8px;
    }
    
    .modal-logo {
        width: 100px;
    }
    
    .modal-text {
        font-size: 14px;
        line-height: 1.5;
    }
    
    .modal-button {
        padding: 10px 15px;
        font-size: 15px;
    }
}

@media (max-width: 320px) {
    .modal-text {
        font-size: 13px;
    }
    
    .modal-button {
        padding: 8px 12px;
        font-size: 14px;
    }
}
