.login-box {
  background: white;
  width: 450px;
  margin: 30px auto;
  padding: 25px 30px;
  border-radius: 8px;
}

.login-box h2 {
  text-align: center;
  color: orangered;
  margin-bottom: 5px;
}

.login-box p {
  text-align: center;
  color: #555;
  margin-bottom: 20px;
}

input[type="email"],
input[type="password"],
select {
  width: 95%;
  padding: 10px;
  margin: 8px 0;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 14px;
}

label {
  font-weight: normal;
  margin-top: 10px;
}

.login-btn {
  background-color: orangered;
  color: white;
  border: none;
  padding: 10px;
  width: 100%;
  font-size: 16px;
  border-radius: 5px;
  margin-top: 10px;
  cursor: pointer;
  clear: both;
}

.login-btn:hover {
  background-color: #d64800;
}
