* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: sans-serif;
}

body {
  height: 100vh;
  background: url('https://images.unsplash.com/photo-1515963665762-77ef90e624fa?q=80&w=2071&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA==') no-repeat center center/cover;
  display: flex;
  justify-content: center;
  align-items: center;
}

.form-wrapper {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 50px 60px;
  width: 420px;
  font-size: medium;
  backdrop-filter: blur(15px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

input {
  padding: 10px;
  background: transparent;
  border: none;
  border-bottom: 1px solid white;
  color: white;
  outline: none;
}

button {
  padding: 10px;
  background: black;
  color: white;
  border: none;
  border-radius: 10px;
  cursor: pointer;
}

button:hover {
  background: #222;
}

.show-pass {
  font-size: 12px;
}

.toggle-text {
  font-size: 14px;
  text-align: center;
}

.toggle-text a {
  color: #00f;
  text-decoration: underline;
}
