/* **************************************************** */
/* AUTENTICAÇÃO */
/* Layout principal da tela de autenticação */
.auth-container {
  display: flex;
  height: 100vh;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.7);
}

/* Estilização do formulário */
.auth-form {
  width: 50%;
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;    
  /* box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5); */
}

  /* Logo */
.auth-logo {
  width: 24rem;
  margin-bottom: 20px;
}

/* Título do formulário */
.auth-form h2 {
  display: flex;
  font-size: 24px;
  color: var(--white-color);
  margin-bottom: 20px;
  justify-content: center;
  text-align: center; 
}

.auth-form input {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid var(--black-color);
  border-radius: 5px;
}

.auth-form label {
  color: #FF9900;
}

  /* Campos de seleção (Estado, Cidade e Igreja) */
.auth-form select {
  width: 80%;
  padding: 10px;
  margin: 10px 0;
  border: 1px solid var(--text-color);
  border-radius: 5px;
  background: var(--white-color);
  font-size: 14px;
}

  /* Mensagem de erro */
.error-message {
  color: var(--message-color);
  font-size: 12px;
  display: none;
  margin-bottom: 10px;
}

.auth-form button {
  width: 100%;
  padding: 10px;
  background-color: var(--accent-color);
  color: var(--white-color);
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

button:hover {
  background-color: var(--secondary-color);
}

.auth-form p {
  margin-top: 10px;
}

.auth-form a {
  color: var(--message-color);
  text-decoration: none;
}

.auth-form a:hover {
  text-decoration: underline;
}

/* Estilização da imagem do lado direito */
.auth-image {
  width: 50%;
  height: 100vh;
}

.auth-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
  
  /* Responsividade para mobile */
  @media screen and (max-width: 768px) {
    .auth-container {
        flex-direction: column;
    }
  
    .auth-form {
        width: 100%;
        height: auto;
        box-shadow: none;
    }
  
    .auth-image {
        display: none;
    }
  }
  