/* Fundo escuro com efeito */
body {
  margin: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Arial, sans-serif;
  background: linear-gradient(to bottom right, #1f1f1f, #3a3a3a);
}

/* Container central */
.login-container {
  width: 100%;
  max-width: 380px;
  padding: 20px;
}

/* Caixa de login */
.login-box {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(6px);
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Inputs com ícones */
.input-group {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 30px;
  padding: 10px 15px;
}

.input-group span {
  color: #fff;
  margin-right: 10px;
}

.input-group input {
  background: transparent;
  border: none;
  outline: none;
  flex: 1;
  color: #fff;
  font-size: 16px;
}

/* Botão de login */
.login-btn {
  background: rgba(255, 255, 255, 0.8);
  border: none;
  border-radius: 30px;
  padding: 12px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
}

.login-btn:hover {
  background: #fff;
}

/* Botão Google */
.google-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #fff;
  color: #555;
  border: none;
  border-radius: 30px;
  padding: 10px;
  font-size: 15px;
  cursor: pointer;
  font-weight: bold;
}
.google-btn img {
  width: 20px;
  height: 20px;
}
.google-btn:hover {
  background: #f1f1f1;
}
/* Opções extras */
.options {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: #ccc;
}

.options a {
  color: #bbb;
  text-decoration: none;
}

.options a:hover {
  text-decoration: underline;
}
