/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  background-color: #0a0f1f;
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  overflow: hidden;
}

    .login-title1 {
      font-size: 1.7em;
      
    }
    .login-title1 span {
      font-size: 0.7em;
      color: gray;
      margin-bottom: 10px; 
    }

.captcha-container {
  display: flex;
  justify-content: center; /* centraliza horizontalmente */
  margin-bottom: 10px;     /* espaço abaixo do reCAPTCHA */
}

/* Estilo para o botão do logo */
.logo-link {
  position: absolute;
  top: 50px;
  left: 100px;
  display: flex;
  align-items: center;
}

.logo {
  height: auto;  /* Ajuste o tamanho do logo conforme necessário */
  width: 200px;
}


.login-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  overflow-y: scroll;
  overflow-x: hidden;
}

.login-card {
  background: #10182e;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  max-width: 400px;
  width: 100%;
  text-align: center;
}

.login-title {
  font-size: 1.8rem;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.login-title span {
  color: #00bcd4;
}

.login-subtitle {
  font-size: 0.9rem;
  color: #b0b8c1;
  margin-bottom: 2rem;
}

.form-group {
  margin-bottom: 1.5rem;
  text-align: left;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: #b0b8c1;
}

.form-group input {
  width: 100%;
  padding: 0.8rem;
  border: none;
  border-radius: 4px;
  background: #1b253d;
  color: #ffffff;
}

.btn-primary {
  width: 100%;
  padding: 0.8rem;
  background: #00bcd4;
  border: none;
  border-radius: 4px;
  color: #ffffff;
  font-size: 1rem;
  cursor: pointer;
}

.btn-primary:hover {
  background: #00a3bf;
}

.login-footer {
  font-size: 0.9rem;
  color: #b0b8c1;
}

.login-footer a {
  color: #00bcd4;
  text-decoration: none;
}

.login-footer a:hover {
  text-decoration: underline;
}

/* Formulários */
form.hidden {
  display: none;
}

form.active {
  display: block;
}
