* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  background-image: url('image.png');
  background-size: cover;
  background-repeat: no-repeat;
  /* background-position: center; */
}

.login-box {
  min-height: 55vh;
  border-radius: 14px;
  width: 400px;
  padding: 40px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #f9f1f1d1;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.login-box h2 {
  margin-bottom: 20px;
}

p {
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-size: 14px;
  color: #000000;
  margin-bottom: 30px;
}

.textbox {
  margin-bottom: 20px;
}

.textbox input {
  border-radius: 5px;
  width: 100%;
  padding: 10px;
  background: #f2f2f2;
  border: none;
  outline: none;
}

.btn {
  border-radius: 5px;
  width: 100%;
  padding: 10px;
  background: #0099cc;
  border: none;
  color: white;
  cursor: pointer;
}

.btn:hover {
  background-color: #0077a7;
}

.options {
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
  font-size: 14px;
}

.options a {
  display: block;
  margin: 5px 0;
  color: #0099cc;
  text-decoration: none;
}

.options a:hover {
  text-decoration: underline;
}