/* auth-email.css */
html,
body {
  margin: 0;
  padding: 0;
  overflow: hidden;
  width: 100%;
  height: 100%;
  font-family: "Helvetica", sans-serif;
  background-color: #000;
  color: #fff;
}
* {
  box-sizing: border-box;
  /* disable text selection */
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  /* disable image dragging */
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
  /* disable blue highlight on Android */
  -webkit-tap-highlight-color: transparent;
}
.login-panel {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  text-align: center;
  display: none;
}
.login-panel h1 {
  margin-bottom: 20px;
  font-size: 1.5em;
  color: #fff;
}
.login-panel input {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 1em;
}
.login-panel input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}
.login-panel input:focus {
  outline: none;
  box-shadow: none;
  border: 1px solid #fff;
}
.login-panel button {
  width: 100%;
  margin-top: 8px;
  padding: 11px;
  border: 1px solid #fff;
  border-radius: 5px;
  background: #000080;
  color: #fff;
  font-size: 1em;
  cursor: pointer;
}
.login-panel button:hover {
  background: #202099;
}
