body {
  background-image: url(backg.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
  background-size: cover;
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #f6f6f6;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 20cm;
}

.login-box {
  background-color: rgba(1, 73, 168, 0.507);
  padding: 20px 30px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
  width: 350px;
}

.login-box h1 {
  font-size: 24px;
  margin-bottom: 10px;
}

.login-box p {
  font-size: 14px;
  color: #000000;
  margin-bottom: 20px;
}

.login-box input {
  background-color: #abebf3;
  width: 320px;
  padding: 10px;
  margin-bottom: 20px;
  border: none;
  border-radius: 4px;
  font-size: 13px;
}
hr {
  border: none;
  height: 3px;
  background-color: black;
  margin: 0;
}

.login-btn {
  border: 1px solid blue;
  border-radius: 16px;
  background-color: blue;
  color: white;

  text-decoration: none;
  height: 3rem;
  width: auto;
  margin: auto;
}
::-webkit-scrollbar {
  width: 7px;
  background-color: #00000091;
}
/*::-webkit-scrollbar-track {
  background: transparent;
}*/
::-webkit-scrollbar-thumb {
  background: #031150;
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: #062899;
}