/* CSS para Esqueci Senha - Página Standalone */

/* Estilo para página standalone usando classes do style.css */
body {
  font-family: 'Poppins', sans-serif;
  background-color: var(--color-bg);
  margin: 0;
  padding: 0;
  min-height: 100vh;
  color: #e0e0e0;
}

/* Usar classes do style.css para o container */
.cadastro-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

/* Header standalone */
.cadastro-header {
  background: linear-gradient(135deg, #1a1a2e, #2c3e50);
  color: white;
  padding: 2rem 0;
  margin-bottom: 2rem;
  border-radius: 0 0 20px 20px;
}

.cadastro-header-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cadastro-title {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.cadastro-title h1 {
  margin: 0;
  font-size: 1.8rem;
  font-weight: 600;
}

.cadastro-title i {
  font-size: 2rem;
  color: #4a90e2;
}

.cadastro-logo {
  height: 50px;
}

/* Sobrescrever page-inner-content para standalone */
.page-inner-content {
  padding: 0;
  background: transparent;
}

/* Banner de desenvolvimento usando classes do style.css */
.development-banner {
  background: linear-gradient(135deg, #ff6b6b, #ee5a24);
  border: 2px solid #c44569;
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-bottom: 2rem;
  box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3);
  animation: pulse 2s infinite;
  display: flex;
  align-items: center;
  gap: 1rem;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.02); }
}

.banner-icon {
  font-size: 2.5rem;
  color: #fff;
  background: rgba(255, 255, 255, 0.2);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-content h4 {
  margin: 0 0 0.5rem 0;
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
}

.banner-content p {
  margin: 0;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.4;
}

/* Responsividade */
@media (max-width: 768px) {
  .cadastro-container {
    padding: 1rem;
  }
  
  .cadastro-header-content {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  .cadastro-title h1 {
    font-size: 1.5rem;
  }
  
  .development-banner {
    flex-direction: column;
    text-align: center;
    gap: 0.8rem;
  }
  
  .development-banner .banner-content {
    text-align: center;
  }
}
