/* Login page*/

.login-box,
.signup-container {
  margin-top: 30px;
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

h1 {
  margin-top: 0;
}

form {
  text-align: left;
}

label {
  display: block;
  margin-bottom: 10px;
  font-size: large;
}

input {
  width: 100%;
  padding: 10px;
  border-radius: 5px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
}

button,
.button {
  background-color: #ffa500;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  font-size: 18px;
  cursor: pointer;
}

button:hover,
.button:hover {
  background-color: #ff8c00;
}

#error-message {
  color: red;
  font-weight: bold;
}

p {
  color: #333;
  font-size: 14px;
  margin-top: 20px;
  text-align: center;
}

a {
  color: #ffa500;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
  color: #ff8c00;
}
