body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: white;
}

.overlay {
  background: url('bg.jpg') no-repeat center center/cover;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.content {
  background-color: rgba(0, 0, 0, 0.5);
  padding: 40px;
  border-radius: 10px;
  max-width: 500px;
  width: 90%;
}

.lock-icon {
  font-size: 30px;
  margin-bottom: 10px;
}

.brand {
  font-size: 24px;
  font-weight: 600;
}

.title {
  font-size: 32px;
  margin: 10px 0;
}

.description {
  font-size: 14px;
  margin-bottom: 20px;
}

.form-group {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

input[type="password"] {
  padding: 10px;
  width: 60%;
  border: none;
  border-radius: 5px;
}

button {
  padding: 10px 15px;
  background-color: white;
  color: black;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
}

.toggle-password {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 18px;
  color: white;
  padding: 0 10px;
  user-select: none;
}

.error {
  margin-top: 10px;
  color: red;
  font-size: 14px;
}
