.auth-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
}

@media only screen and (max-width: 768px) {
  .auth-wrapper {
    flex-direction: column;
    gap: 10px;
  }

  .button {
    width: 100%;
  }
}

.button {
  border-width: 2px;
  border-style: solid;
  border-color: #ee6f2d;
  border-radius: 20px;
  color: #000000;
  padding: 5px 25px;
  text-decoration: none;
  background: #f7f8fe;
  transition: color 0.3s, background-color 0.3s;
  text-align: center;
}

.register-button {
  border-style: solid;
  border-width: 2px;
  border-style: solid;
  border-color: #ff5600;
  border-radius: 20px;
  color: #ffffff;
  background-color: #ff5600;
}

.login-button:hover {
  color: #ff5600;
}

.logout-button:hover {
  color: #ff5600;
  text-decoration: none;
}

.button:hover {
  text-decoration: none;
}

.register-button:hover {
  background: #f7f8fe;
}

.account-link {
  text-decoration: none;
  color: #ec4f00;
  display: flex;
  align-items: center;
  justify-content: center;
}

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