@import "https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css";

* {
  margin: 0;
  color: rgb(0, 0, 0);
  font-family: "Russo One", sans-serif;
  font-weight: 400;
}

.login-box {
  width: 100%;
  max-width: 430px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: black;
  background-color: #191919;
  border-radius: 16px;
  padding: 20px;
  box-sizing: border-box;
}

.login-box h1 {
  float: left;
  border-bottom: 6px solid white;
  margin-bottom: 20px;
  padding: 13px 0;
  font-family: "VW";
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 22px;  /* Adjusted font size */
}

.textbox {
  width: 100%;
  overflow: hidden;
  font-size: 15px;
  padding: 8px 0;
  margin: 8px 0;
  border-bottom: 1px solid white;
}

.textbox i {
  width: 26px;
  float: left;
  text-align: center;
}

.textbox input {
  border: none;
  outline: none;
  background: none;
  color: white;
  font-size: 18px;
  width: 80%;
  float: left;
  margin: 0 10px;
}

.btn {
  width: 100%;
  background: none;
  border: 2px solid white;
  color: white;
  padding: 5px;
  font-size: 18px;
  cursor: pointer;
  margin: 12px 0;
  transition: all 0.2s ease-in-out;
  border-radius: 4px;
}

.btn:hover {
  background-color: #C0C0C0;
  border-color: #C0C0C0;
}

.login-box p {
  font-size: 18px;
}

p {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.5);
}

.a-blue {
  color: #C0C0C0;
  text-decoration: none;
  opacity: 1;
}

button {
  width: 100%;
  background: none;
  border: 2px solid white;
  color: white;
  padding: 5px;
  font-size: 18px;
  cursor: pointer;
  margin: 12px 0;
  transition: all 0.2s ease-in-out;
  border-radius: 4px;
}

button:hover {
  background-color: #C0C0C0;
  border-color: #C0C0C0;
}

/* Mobile optimization */
@media screen and (max-width: 480px) {
  .login-box {
    width: 90%;
    padding: 15px;
  }

  .login-box h1 {
    font-size: 18px;
    margin-bottom: 15px;
  }

  .textbox {
    font-size: 14px;
    margin: 5px 0;
  }

  .textbox input {
    font-size: 16px;
  }

  .btn {
    font-size: 16px;
    padding: 8px;
  }

  p {
    font-size: 16px;
  }

  button {
    font-size: 16px;
    padding: 8px;
  }
}

@media screen and (max-width: 768px) {
  .login-box {
    width: 80%;
  }

  .login-box h1 {
    font-size: 20px;
  }

  .textbox input {
    font-size: 17px;
  }

  .btn, button {
    font-size: 17px;
  }
}