:root {
  --fallback-font-stack: Helvetica, Arial, serif;
}

button:hover{
  cursor: pointer;
  background-color: #e79244 !important;
}

html, body {
  overflow: hidden;
}

input[type=text], select, textarea {
  width: 100%;
  max-width: 300px;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  resize: vertical;
  background-color: transparent;
}

.guest-login.nameSection {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #4d5965;
  overflow: hidden;
  height: 100vh;
}
.guest-login .contentBox {
  display: flex;
  flex-direction: column;
  width: 100%;
  background-color: #1e2d3c;
  overflow: hidden;
}
.guest-login .butterflyImage {
  margin: 14px 0 14px 15px;
  width: 63px;
}
.guest-login .additionalContentBox {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  width: 84.62%;
  background-color: white;
  border-radius: 10px;
  padding: 20px;  
  height: 60%
}
.guest-login .flexColumn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px 0;
  margin: auto;
  width: 100%;
}
.guest-login .butterflyLongevitySubtitle {
  display: flex;
  justify-content: center;
  font: 600 20px/1.2 Cabin, Helvetica, Arial, serif;
  color: #271626;
  text-align: center;
}
.guest-login .innerContentBox {
  display: flex;
  flex-direction: column;
  width: 100%;
  background-color: #f6f6f6;
  border-radius: 5px;
  outline: 1px solid #adadad;
  outline-offset: -1px;
}
.guest-login .nameText {
  margin: 8px 0 10px 14px;
  width: 43px;
  font: 400 14px/1.21 Cabin, Helvetica, Arial, serif;
  color: #4d5965;
}
.guest-login .guestSignInButton {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 33px 0 34px;
  width: 195px;
  max-width: 100%;
  font: 700 20px/1.2 Cabin, Helvetica, Arial, serif;
  color: white;
  text-align: center;
  background-color: #a0b8d1;
  border-radius: 5px;
  padding: 18px 24px;
}
.guest-login .colorBox {
  margin-top: auto;
  width: 100%;
  min-height: 58px;
  background-color: #1e2d3c;
}

/* Styling the error message */
#errorMessage {
  color: red;
  font-weight: bold;
  font: 600 16px/1.2 Cabin, Helvetica, Arial, serif;
  opacity: 0; /* Start hidden */
  transition: opacity 0.5s ease-in-out; /* Smooth fade-in/out */
}

/* Show the error message */
#errorMessage.show {
  opacity: 1; /* Fully visible */
}