body {
  margin: 0;
  padding: 0;
  background: #f2f2f2;
  font-family: Arial, Helvetica, sans-serif;
}

.login-box {
  width: 350px;
  padding: 40px;
  background: white;
  border-radius: 10px;
  box-shadow: 0px 0px 10px 0px #0000001a;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.login-box .avatar {
  width: 100px;
  border-radius: 50%;
  margin-bottom: 10px;
}

.login-box h1 {
  margin-bottom: 20px;
  font-size: 24px;
}

.login-box select,
.login-box input[type="text"],
.login-box input[type="password"] {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.login-box button {
  width: 100%;
  padding: 10px;
  background: #007bff;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.login-box button:hover {
  background: #0056b3;
}
