.login-section {
  min-height: 85vh;
  background-color: #DCEAF7;
  color: #0F374D;
  padding-block-end: 50px;
  width: 100%;
  background-image: url(../src_images/controls-1853330.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
}

h1 {
  color: white;
  font-weight: 200;
  text-align: center;
  font-size: 50px;
}

.login-form {
  width: clamp(320px, 55vw, 400px);
  padding: 10px;
  margin-inline: auto;
  margin-block: auto;
  background-color: rgba(255,255,255,0.7);
  border-radius: 5px;
}

.login-form form {
  width: clamp(280px, 50vw, 360px);
  margin-inline: auto;
  margin-block: auto;
}

.login-form input {
  position: relative;
  font-size: 1.1rem;
  font-weight: 400;
  padding: 5px;
  margin-block: 5px;
  width: clamp(280px, 50vw, 360px);
  margin-inline: auto;
  border: 1px solid #0F374D;
  border-radius: 5px;
  background-color: #ffffff;
  color: black;
}

.account-login-button {
  text-align: center;
}

.login-form button {
  position: relative;
  font-size: 1.1rem;
  font-weight: 450;
  padding: 5px;
  margin-block: 5px;
  margin-inline: auto;
  border: 1px solid #444444;
  border-radius: 5px;
  width: clamp(100px, 35vw, 200px);
  background-color: #222222;
  color: white;
}
.login-form button:hover {
  background-color: #444444;
  cursor: pointer;
}

.error-message {
  text-align: center;
  color: red;
}