/* ======== ESTILO GERAL ======== */
body {
  margin: 0;
  background: #0b0c10;
  color: #e7e8ea;
  font-family: "Inter", system-ui, Arial, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

/* ======== CONTAINER GERAL ======== */
.login-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 420px;
  padding: 20px;
  box-sizing: border-box;
  text-align: center;
}

/* ======== LOGO E NOME ======== */
.login-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 28px;
}

.login-logo img {
  width: 210px;
  height: 210px;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(255,255,255,0.05));
  margin-bottom: 10px;
}

.login-logo h1 {
  font-size: 24px;
  font-weight: 600;
  color: #fff;
  /* #6b46c1 */
  margin: 0;
  letter-spacing: 0.5px;
}

/* ======== BLOCO DO LOGIN ======== */
.login-card {
  background: #14161b;
  border: 1px solid #22242b;
  border-radius: 20px;
  padding: 36px 28px;
  width: 90%;
  max-width: 360px;
  box-shadow: 0 3px 20px rgba(0, 0, 0, 0.45);
  box-sizing: border-box;
}

.login-card h2 {
  margin-top: 0;
  font-size: 22px;
  color: #ffffff;
  text-align: center;
  margin-bottom: 24px;
}

/* ======== FORMULÁRIO ======== */
.login-card form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.login-card input {
  width: 90%;
  padding: 12px;
  border: none;
  border-radius: 10px;
  background: #0f1117;
  color: #fff;
  font-size: 15px;
  outline: none;
  transition: background 0.3s, box-shadow 0.3s;
}

.login-card input::placeholder {
  color: #8b8d92;
}

.login-card input:focus {
  background: #10121b;
  box-shadow: 0 0 0 2px #6d5dff;
}

/* ======== BOTÃO LOGIN ======== */
.login-card button {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 10px;
  background: #6d5dff;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.25s, transform 0.1s;
}

.login-card button:hover {
  background: #5a4de3;
}

.login-card button:active {
  transform: scale(0.98);
}

/* ======== TEXTO INFORMATIVO ======== */
.hint {
  margin-top: 16px;
  font-size: 13px;
  text-align: center;
  color: #999;
}

/* ======== RESPONSIVIDADE ================================================================ */
@media (max-width: 480px) {
  .login-wrap {
    padding: 10px;
  }

  .login-card {
    padding: 28px 20px;
    border-radius: 16px;
  }

  .login-logo img {
    width: 200px;
    height: 200px;
  }

  .login-logo h1 {
    font-size: 20px;
  }

  .login-card input {
  width: 90%;
  
}
}
