 .step-form {
     display: none;
 }

 .step-form.active {
     display: block;
 }

 .alert-custom {
    border-radius: 10px;
    border: none;
}

#verificationCode:focus {
    border-color: #001942;
    box-shadow: 0 0 0 0.2rem rgba(0, 25, 66, 0.25);
}

.btn-outline-primary {
    color: #001942;
    border-color: #001942;
}

.btn-outline-primary:hover {
    background-color: #001942;
    border-color: #001942;
}

.text-primary {
    color: #001942 !important;
}

.verification-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    max-width: 100%;
    overflow: hidden;
}

/* Container para o alerta de demonstração */
#stepEmailVerification .alert-warning {
    margin: 0.5rem 0;
    padding: 0.5rem 0.75rem !important;
    font-size: 0.85rem !important;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Ajustar tamanho do código demo */
#stepEmailVerification .alert-warning strong {
    font-size: 1rem !important;
}

/* Botão de copiar compacto */
#stepEmailVerification .alert-warning .btn {
    padding: 0.1rem 0.4rem !important;
    font-size: 0.75rem !important;
}

/* Reduzir espaçamento dos alertas */
#stepEmailVerification .alert-info {
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

/* Ajustar botões para não quebrar linha */
#stepEmailVerification .d-flex {
    gap: 0.5rem;
}

#stepEmailVerification .btn {
    font-size: 0.875rem;
    padding: 0.5rem 0.75rem;
    white-space: nowrap;
}

/* Responsividade para telas menores */
@media (max-width: 576px) {
    .verification-section {
        padding: 1rem;
    }
    
    #stepEmailVerification .btn {
        font-size: 0.75rem;
        padding: 0.4rem 0.6rem;
    }
    
    #verificationCode {
        font-size: 1.2rem !important;
        letter-spacing: 0.3rem !important;
    }
}

/* Estilo para o alerta de demonstração do código */
.alert-warning {
    animation: fadeInDown 0.5s ease-in-out;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.alert-success {
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.btn-cadastrar {
  background: linear-gradient(135deg, #001942 0%, #003366 100%);
  color: white;
  font-weight: bold;
  padding: 8px 24px;
  border-radius: 12px;
  border: none;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.1rem;
  box-shadow: 0 4px 15px rgba(0, 25, 66, 0.3);
}

.btn-cadastrar:hover {
  background: linear-gradient(135deg, #003366 0%, #001942 100%);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 25, 66, 0.4);
}