:root {
    --primary-color: #006450;
    --secondary-color: #006465;
    --text-color: #1f2937;
    --bg-color: #f8fafc;
}

.auth-page {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.auth-container {
    background: var(--bg-color);
    border-radius: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
    overflow: hidden;
}

.auth-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 2rem;
    text-align: center;
    color: white;
}

.auth-header h2 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
}

.auth-form {
    padding: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    font-weight: 500;
}

.form-input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #e2e8f0;
    border-radius: 0.375rem;
    transition: border-color 0.2s;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

/* Auth Pages */

.auth-container {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 1rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
}

/* ... (mantenha o restante do CSS que já foi fornecido anteriormente) */

.auth-button {
    width: 100%;
    padding: 0.75rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    border-radius: 0.375rem;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.2s;
}

.auth-button:hover {
    opacity: 0.9;
}

.auth-links {
    margin-top: 1.5rem;
    text-align: center;
}

.auth-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.auth-link:hover {
    text-decoration: underline;
}

.auth-alert {
    position: fixed;
    top: 1rem;
    right: 1rem;
    padding: 1rem;
    border-radius: 0.375rem;
    max-width: 300px;
    animation: slideIn 0.3s ease-out;
}

.auth-alert.error {
    background: #fee2e2;
    color: #dc2626;
}

.auth-alert.success {
    background: #dcfce7;
    color: #16a34a;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
    }

    to {
        transform: translateX(0);
    }
}


/* Estilo básico para o botão */
button {
    background-color: #006465; /* Cor de fundo verde */
    color: white; /* Cor do texto */
    border: none; /* Remove bordas */
    padding: 15px 32px; /* Espaçamento interno */
    text-align: center; /* Alinha o texto ao centro */
    text-decoration: none; /* Remove o sublinhado (caso seja link) */
    display: inline-block; /* Permite ajustar o botão como bloco em linha */
    font-size: 16px; /* Tamanho da fonte */
    margin: 4px 2px; /* Margem entre os botões */
    cursor: pointer; /* Mostra o cursor como mãozinha */
    border-radius: 12px; /* Bordas arredondadas */
    transition: background-color 0.3s, transform 0.2s; /* Animações suaves */
  }
  
  /* Efeito ao passar o mouse */
  button:hover {
    background-color: #006440; /* Cor de fundo verde mais escuro */
    transform: scale(1.05); /* Aumenta um pouco o tamanho do botão */
  }
  
  /* Efeito quando o botão for pressionado */
  button:active {
    transform: scale(0.95); /* Reduz um pouco o tamanho do botão */
  }
  