@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");
body {
  margin: 0;
}

.secure-link {
  display: grid;
  grid-template-columns: 50% 50%;
  width: 100%;
  height: 100vh;
  /* Tooltip container */
  /* Tooltip text */
  /* Show the tooltip text when you mouse over the tooltip container */
}
.secure-link .disabled {
  background: rgba(0, 0, 0, 0.1) !important;
  pointer-events: none !important;
}
.secure-link a {
  color: #004382;
  text-decoration: none;
}
.secure-link form {
  width: 100%;
}
@media all and (max-width: 991px) {
  .secure-link {
    grid-template-columns: 100%;
  }
}
.secure-link__logo {
  width: 242px;
  height: auto;
}
.secure-link__featured {
  background-image: url(https://env-5952545-clone404606.mightybox.site/wp-content/uploads/2021/12/Background-login-screen.jpg);
  background-size: cover;
  background-position: center center;
}
@media all and (max-width: 480px) {
  .secure-link__featured {
    display: none;
  }
}
.secure-link__form-div {
  background-color: #ffffff;
  padding: 20px;
  margin: auto;
}
@media all and (max-width: 991px) {
  .secure-link__form-div {
    margin: 0 auto;
  }
}
.secure-link__inner {
  display: flex;
  width: 100%;
  max-width: 430px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
@media all and (max-width: 991px) {
  .secure-link__inner {
    margin: auto;
  }
}
.secure-link__subheading {
  font-family: "Open Sans", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 19px;
  color: #FE6903;
  margin-bottom: 60px;
  text-align: center;
}
.secure-link__title {
  /* Request Secure Link */
  font-family: "Open Sans", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 27px;
  color: #32312F;
  margin-bottom: 16px;
  text-align: left;
  display: block;
  width: 100%;
}
.secure-link__desc {
  /* Please enter your email address here to receive the secure link. */
  font-family: "Open Sans", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #4A4A4A;
  margin-bottom: 30px;
}
.secure-link__sent_to {
  /* Please enter your email address here to receive the secure link. */
  font-family: "Open Sans", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #4A4A4A;
  margin-top: 30px;
  margin-bottom: 30px;
}
.secure-link__info {
  font-family: "Open Sans", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #4A4A4A;
  width: 100%;
  text-align: left;
  display: flex;
  align-items: center;
  margin-bottom: 30px;
  gap: 5px;
}
.secure-link__sent_info {
  text-align: center;
  font-family: "Open Sans", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #4A4A4A;
  width: 100%;
  display: flex;
  align-items: center;
  margin-bottom: 30px;
  flex-direction: column;
  gap: 5px;
}
.secure-link .email-input {
  width: 100%;
  height: 50px;
  border: 1px solid #E0DFDB;
  border-radius: 8px;
  margin-bottom: 30px;
  padding: 14px 21px;
}
.secure-link .email-input::-moz-placeholder {
  font-family: "Open Sans", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: rgba(74, 74, 74, 0.5);
}
.secure-link .email-input::placeholder {
  font-family: "Open Sans", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: rgba(74, 74, 74, 0.5);
}
.secure-link input[type=submit] {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 13px 24px;
  height: 50px;
  background: #004382;
  border-radius: 8px;
  font-family: "Open Sans", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  line-height: 24px;
  text-transform: uppercase;
  color: #FFFFFF;
  width: 100%;
  border: none;
  margin-bottom: 60px;
  cursor: pointer;
  transition: 0.3s;
}
.secure-link input[type=submit]:hover {
  background: #005db5;
}
.secure-link__footer {
  font-family: "Open Sans", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #4A4A4A;
  text-align: center;
}
.secure-link .tooltip {
  position: relative;
  display: inline-block;
}
.secure-link .tooltip .tooltiptext {
  visibility: hidden;
  color: #fff;
  text-align: center;
  padding: 24px 20px;
  background: #4A4A4A;
  border-radius: 16px;
  /* Position the tooltip text - see examples below! */
  position: absolute;
  z-index: 1;
  font-family: "Open Sans", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  width: 320px;
}
.secure-link .tooltip:hover .tooltiptext {
  visibility: visible;
}
.secure-link .tooltip .tooltiptext {
  width: 320px;
  top: calc(100% + 10px);
  left: 50%;
  margin-left: -180px; /* Use half of the width (120/2 = 60), to center the tooltip */
}
.secure-link .tooltip .tooltiptext::after {
  content: " ";
  position: absolute;
  top: -10px;
  transform: rotate(180deg);
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #4A4A4A transparent transparent transparent;
}/*# sourceMappingURL=secure-link.css.map */