/* ========================================
 * EMAIL VERIFICATION EXPIRED PAGE
 * ======================================= */
.email-verification-expired-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  height: 100vh;
  width: 100vw;
  box-sizing: border-box;
  padding-top: 60px;
}

.content-panel-body:has(.email-verification-expired-container) {
  display: flex !important;
  align-items: center !important;
  flex-direction: column !important;
}

.body-primary {
  font-family: "Roboto Thin", "Roboto", sans-serif;
  font-weight: 250;
  font-size: 17px;
  letter-spacing: normal;
  color: #767676;
  text-align: left;
  line-height: 26px;
}

#message-text {
  margin-bottom: 1.5rem;
}

.field-error-text {
  display: none;
  color: #d32f2f;
  font-size: 14px;
  margin-top: 4px;
}

.email-verification-expired-container h2 {
  color: #333;
  font-weight: 200;
  margin-bottom: 0.5rem;
  width: 100%;
  height: auto;
  display: flex;
  font-family: 'Roboto-Light', 'Roboto Light', 'Roboto', sans-serif;
  font-size: 40px;
  align-items: center;
}

.email-verification-expired-container hr {
  margin: 0.5rem 0;
  border: none;
  border-top: 1px solid #514c4c;
  margin-top: -0.7rem;
  margin-bottom: 0.5rem;
}

.email-verification-expired-container .form-group {
  margin-bottom: 1rem !important;
  box-sizing: border-box;
  display: block;
}

.field-label {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #333333;
  text-align: left;
  line-height: 20px;
}

/* ========================================
 * INPUT FIELD STYLES
 * ======================================= */
#email-field {
  width: 100%;
  height: 44px;
  display: flex;
  position: relative;
}

#email-input-container {
  position: relative;
  width: 100%;
  height: 44px;
  background-color: rgba(255, 255, 255, 1);
  box-sizing: border-box;
  border: 1px solid rgba(127, 127, 127, 1);
  border-radius: 5px;
  box-shadow: none;
}

#email-input-container.focused {
  position: relative;
  width: 100%;
  height: 44px;
  background-color: rgba(255, 255, 255, 1);
  box-sizing: border-box;
  border: 2px solid rgba(0, 82, 146, 1) !important;
  border-radius: 5px;
  box-shadow: none;
}

#verification-email {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 48px;
  padding: 20px 0px 20px 15px;
  font-family: "Roboto-Regular", "Roboto", sans-serif;
  font-weight: 400;
  font-size: 13px;
  letter-spacing: normal;
  color: #555555;
  text-align: left;
  background-color: transparent;
  border: none;
  outline: none;
}

#verification-email:focus {
  outline: none;
  box-shadow: none;
}

/* ========================================
 * CANCEL BUTTON STYLES
 * ======================================= */
#cancel-button-container {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 48px;
  background-color: rgba(255, 255, 255, 1);
  box-sizing: border-box;
  border: 1px solid rgba(170, 170, 170, 1);
  border-radius: 4px;
  box-shadow: none;
}

#cancel-button {
  position: relative;
  flex: 0.7;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#cancel-button .text {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
  position: relative;
  z-index: 10;
  font-family: "Roboto Medium", "Roboto", sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.5px;
  color: #005292;
  text-align: center;
  text-decoration: none;
}

#cancel-button-text {
  word-wrap: break-word;
}

#cancel-button-container.mouseOver {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 46px;
  background-color: rgba(32, 134, 198, 1);
  box-sizing: border-box;
  border: 1px solid rgba(170, 170, 170, 1);
  border-radius: 4px;
  box-shadow: none;
}

#cancel-button:has(#cancel-button-container.mouseOver) #cancel-button-text {
  color: #FFFFFF;
}

#cancel-button-container.selected {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 46px;
  background-color: rgba(32, 134, 198, 1);
  box-sizing: border-box;
  border: 1px solid rgba(170, 170, 170, 1);
  border-radius: 4px;
  box-shadow: none;
}

#cancel-button-container.disabled {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 46px;
  background-color: rgba(215, 215, 215, 1);
  border: none;
  border-radius: 4px;
  box-shadow: none;
}

/* ========================================
 * RESEND BUTTON STYLES
 * ======================================= */
#resend-button-container {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 46px;
  background-color: rgba(36, 81, 134, 1);
  border: none;
  border-radius: 4px;
  box-shadow: none;
}

#resend-button {
  position: relative;
  flex: 1.3;
  height: 46px;
  display: flex;
}

#resend-button .text {
  position: absolute;
  align-self: center;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

#resend-button-text {
  word-wrap: break-word;
  color: #FFFFFF;
  background: transparent;
  border: none;
  padding: 0 0 0 25px;
  font-family: "Roboto Medium", "Roboto", sans-serif;
  font-weight: 500;
  font-size: 17px;
  letter-spacing: 1.3px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  line-height: 1.3;
  text-align: left;
}

#resend-button-container.mouseOver {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 46px;
  background-color: rgba(32, 134, 198, 1);
  border: none;
  border-radius: 4px;
  box-shadow: none;
}

#resend-button-container.disabled {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 42px;
  background-color: rgba(215, 215, 215, 1);
  border: none;
  border-radius: 4px;
  box-shadow: none;
}

/* ========================================
 * BUTTON CLASS STYLES
 * ======================================= */
.button-outlined {
  font-family: "Roboto Medium", "Roboto", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.5px;
  color: #005292;
}

.button-solid {
  font-family: "Roboto Medium", "Roboto", sans-serif !important;
  font-weight: 500 !important;
  font-size: 16px !important;
  letter-spacing: 1.3px !important;
  color: #FFFFFF !important;
}

/* ========================================
 * ALERTS & MESSAGES
 * ======================================= */
.email-verification-expired-container .alert {
  border-radius: 8px;
  padding: 1rem;
}

.email-verification-expired-container .alert-info {
  background-color: #e7f3ff;
  border-color: #b8daff;
  color: #004085;
}

.email-verification-expired-container .alert-hidden {
  display: none;
}

.content-wrapper {
  max-width: 440px;
  width: 100%;
}

.email-verification-expired-container .form-group {
  margin-bottom: 1.5rem !important;
}

/* ========================================
 * RESPONSIVE STYLES
 * ======================================= */
@media (max-width: 576px) {
  .email-verification-expired-container {
    padding-top: 20px;
  }
}
