body {
  margin-right: 0;
  margin-left: 0;

  background: rgba(235, 240, 245, 1);
}

.guestbox {
  position: relative;
  display: flex;

  flex-direction: column;

  margin: 70px auto;

  width: 100%;
  max-width: 360px;

  padding: 30px;

  border-radius: 7px;

  background: white;
  box-shadow: rgba(145, 160, 170, 0.2) 0 0 2px 0, rgba(145, 160, 170, 0.12) 0 12px 24px -4px;
}

.guestbox-header {
  position: relative;
  display: flex;

  align-items: center;
  justify-content: center;

  flex-direction: row;

  width: 100%;
}

.guestbox-logo {
  position: relative;
  display: flex;

  align-items: center;
  justify-content: center;

  flex-direction: row;

  width: 100%;
  height: 80px;
}
.guestbox-logo img {
  position: relative;
  display: flex;

  width: 100%;
  height: 100%;

  object-fit: contain;
  object-position: center center;
}

.guestbox-body {
  position: relative;
  display: flex;

  flex-direction: column;

  margin: 20px 0;

  width: 100%;
}

.guestbox-form {
  position: relative;
  display: flex;

  flex-direction: column;

  width: 100%;
}

.guestbox-form-inputgroup {
  position: relative;
  display: flex;

  flex-direction: column;

  margin-bottom: 20px;

  width: 100%;
}

.guestbox-form-inputgroup-title {
  position: relative;
  display: flex;

  margin-bottom: 10px;

  width: 100%;

  font-weight: 600;
  font-size: 14px;

  color: rgba(var(--g-font-color), 1);
}

.guestbox-form-input {
  position: relative;
  display: flex;

  width: 100%;
  height: 40px;

  padding: 8px 16px;

  border: 1px solid rgba(225, 230, 240, 1);
  border-radius: 7px;

  font-weight: 500;
  font-size: 14px;

  color: rgba(90, 105, 135, 1);

  transition: 0.2s all ease-in-out;
}
.guestbox-form-input:focus {
  outline: 0;

  border-color: rgba(175, 195, 255, 1);
}

.guestbox-form-inputgroup-errortext {
  position: relative;
  display: flex;

  margin-top: 2px;

  width: 100%;

  font-weight: 600;
  font-size: 12px;

  color: rgba(180, 20, 20, 1);
}

.guestbox-form-actions {
  position: relative;
  display: flex;

  align-items: flex-start;
  justify-content: space-between;

  flex-direction: row;

  width: 100%;
}

.guestbox-form-actions-side {
  position: relative;
  display: flex;
  flex: 1;
  flex-shrink: 0;

  align-items: flex-start;

  flex-direction: row;

  min-width: calc(100% / 3);
}

.guestbox-form-checkbox {
  cursor: pointer;
  position: relative;
  display: flex;

  align-items: flex-start;

  flex-direction: row;

  font-size: 14px;

  color: rgba(40, 55, 70, 1);
}

.guestbox-form-checkbox .guestbox-form-checkbox-mark {
  position: relative;
  display: flex;

  align-items: center;
  justify-content: center;

  flex-direction: row;

  width: 18px;
  height: 18px;

  border-radius: 5px;
  border: 1.25px solid rgba(225, 230, 240, 1);

  background: rgba(255, 255, 255, 0);
}
.guestbox-form-checkbox .guestbox-form-checkbox-mark i {
  position: relative;
  display: none;

  color: white;
}

.guestbox-form-checkbox input {
  position: absolute;
  width: 0;
  height: 0;
}
.guestbox-form-checkbox input:focus ~ .guestbox-form-checkbox-mark {
  border-color: rgba(175, 195, 255, 1);
  box-shadow: 0 0 0 3px rgba(95, 135, 255, 0.25);
}
.guestbox-form-checkbox input:checked ~ .guestbox-form-checkbox-mark {
  background: rgba(95, 135, 255, 1);
  border-color: rgba(95, 135, 255, 1);
}

.guestbox-form-checkbox input:checked ~ .guestbox-form-checkbox-mark i {
  display: flex;
}

.guestbox-form-checkbox-title {
  position: relative;

  margin-right: 5px;

  line-height: 18px;

  font-weight: 500;
}

.guestbox-form-button {
  cursor: pointer;
  position: relative;
  display: flex;

  border: 0;

  align-items: center;
  justify-content: center;

  flex-direction: row;

  margin-top: 30px;

  width: 100%;
  height: 40px;

  border-radius: 7px;

  font-weight: 500;
  font-size: 14px;

  color: white;
  background: rgba(95, 135, 255, 1);

  transition: 0.2s all ease-in;
}
.guestbox-form-button:hover {
  background: rgba(80, 115, 215, 1);
}
