* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
body {
  height: 100vh;
  display: grid;
  place-content: center;
  font-family: "Inter", sans-serif;
}
.loginBox {
  margin: auto;
  display: flex;
  align-items: center;
  flex-direction: column;
  width: 400px;
}

.header {
  font-size: 22px;
  font-weight: bolder;
  text-align: center;
}
.subheader {
  font-weight: 16px;
  font-weight: light;
  text-align: center;
}
form {
  margin-top: 1rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-bottom: 1rem;
}
.inputs {
  width: 100%;
  padding: 1rem;
  background-color: white;
  color: black;
  border: 1px solid #d2d5da;
  border-radius: 5px;
  font-size: 14px;
}
input:active,
input:focus {
  border: 1px solid #d2d5da;
  border-radius: 5px;
  outline: none;
}
.passwordbox {
  display: flex;
  align-items: center;
  gap: 2px;
}
.passwordInput,
.passwordInput:active,
.passwordInput:focus {
  flex-grow: 1;
  border: none;
  outline: none;
  height: inherit;
  background-color: transparent;
}
button {
  background-color: #007bff;
  padding: 0.8rem 0.5rem;
  color: white;
  border-radius: 1.5rem;
  border-color: #007bff;
  width: 35%;
  margin: 0 auto;
  font-size: 16px;
  font-weight: bold;
}
button:hover {
  background-color: #0056b3;
}
span {
  font-size: 14px;
  text-align: center;
  color: #007bff;
  margin-bottom: 10px;
}
.spanText {
  font-size: 14px;
  text-align: center;
}

.spanText span {
  font-size: 15px;
}

.flashes {
  list-style: none;
  padding: 0;
}

.success {
  background-color: #d4edda;
  color: #155724;
  padding: 10px;
  border: 1px solid #c3e6cb;
  margin-bottom: 10px;
  border-radius: 4px;
}

.error {
  background-color: #f8d7da;
  color: #721c24;
  padding: 10px;
  border: 1px solid #f5c6cb;
  margin-bottom: 10px;
  border-radius: 4px;
}

.top-bar {
  position: absolute;
  top: 22px;
  left: 35px;
  right: 35px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.logo {
  height: 70px;
}

.right-buttons {
  display: flex;
  align-items: center;
  gap: 25px;
}

.contact-link {
  text-decoration: none;
  color: black;
  font-size: 17px;
}

.contact-link:hover {
  text-decoration: underline;
}

.apbma-button {
  text-decoration: none;
  background-color: #007bff; /* Blue color */
  color: white;
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 17px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.apbma-button:hover {
  background-color: #0056b3;
}
