/* ==========================================================================
   # LOGIN PAGE STYLES
   ========================================================================== */
/* ==========================================================================
   # COLOR VARIABLES
   ========================================================================== */
@import url(https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700);
@import url("https://fonts.googleapis.com/css?family=Reenie+Beanie&display=swap");
@import url(https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,400;1,500&display=swap);
:root {
  --fmgPrimary: #2d69ff;
  --fmgPrimaryRGB: 45, 105, 255;
  --fmgPrimaryDark: #013eac;
  --fmgFont: "Euclid", "Poppins", Helvetica, Arial, san-serif;
  --fmgWarning: #ff3343;
  --fmgError: #D93A3D;
  --fmgBannerError: rgba(217, 58, 61, 0.15);
  --fmgTextColor: #000;
  --fmgTextLightColor: #818181;
  --fmgBackground: #f0f0f0;
  --fmgBorder: solid 1px #a5a5a5;
  --fmgBorderDashed: dashed 1px #a5a5a5;
  --fmgShadow: 0px 2px 2px rgba(0, 0, 0, 0.07), 0px 2px 1px -1px rgba(0, 0, 0, 0.06), 0px 1px 3px rgba(0, 0, 0, 0.1);
  --fmgBaseFontPx: 18px;
}

/*SCROLLBAR STYLES*/
/* BUTTON STYLES */
/* GHOST BUTTON STYLES */
/* TOP NAV */
/* COMPLIANCE STYLES */
/* ==========================================================================
  #MIXINS
  ========================================================================== */
/*  Modal Button Base Styles mixin
    ** When using this mixin if you are, and by if I mean you should **
    ** be using, flex on the parent element then the padding only matters **
    ** for the top and bottom
*/
/* ==========================================================================
  # FONTS
  ========================================================================== */
@font-face {
  font-family: "fmgicons";
  src: url("/Content/fonts/customFonts/fmgicons.eot?v=2.9.2");
  src: url("/Content/fonts/customFonts/fmgicons.eot?#iefix&v=2.9.2") format("embedded-opentype"), url("/Content/fonts/customFonts/fmgicons.woff?v=2.9.2") format("woff"), url("/Content/fonts/customFonts/fmgicons.ttf?v=2.9.2") format("truetype"), url("/Content/fonts/customFonts/fmgicons.svg?v=2.9.2#fmgicons") format("svg");
  font-weight: normal;
  font-style: normal;
}
#waspHtml {
  font-family: var(--fmgFont);
  font-size: 16px;
  line-height: 1.5;
}
#waspHtml #waspBody {
  height: auto;
  color: var(--fmgTextColor);
  padding: 0;
}

body {
  padding: 0;
  margin: 0;
}
body * {
  box-sizing: border-box;
}

a {
  color: var(--fmgPrimary);
  transition: color 0.25s ease-in-out;
}
a:active {
  outline: none;
}
a:hover {
  color: var(--fmgPrimaryDark);
  transition: color 0.25s ease-in-out;
}

button {
  border: 0;
}

/*LOGIN FORM*/
body.c-body__login {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 100vh;
}
@supports (height: 100dvh) {
  body.c-body__login {
    min-height: 100dvh;
  }
}
body.c-body__login.c-login--temp .c-login__box {
  width: 100%;
  padding: 0 40px 48px;
}
@media (min-width: 992px) {
  body.c-body__login.c-login--temp .c-login__box {
    width: 480px;
  }
}
body.c-body__login.c-login--temp .c-form__login {
  width: 100%;
}
@media (min-width: 480px) {
  body.c-body__login.c-login--temp .c-form__login {
    width: 480px;
  }
}
body.c-body__login p {
  text-wrap: balance;
}

.c-login__box.login-page-form {
  display: flex;
  flex-direction: column;
  width: 480px;
  height: auto;
  padding: 0 40px 28px;
}

.c-login-form__logo {
  image-rendering: -webkit-optimize-contrast;
  width: 100%;
  height: 100px;
  background-color: #fff !important;
  background-image: url(https://s3.amazonaws.com/static.contentres.com/host/wasp/images/logos/fmg-logo.svg);
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
  top: 0;
  left: 0;
}

.page-form-logo img {
  margin-top: 14px;
}

.c-form__login {
  display: flex;
  flex-direction: column;
}

.c-login__form .welcome {
  width: 100%;
  text-align: center;
}

.c-login__form {
  display: flex;
  gap: 20px 0;
  flex-direction: column;
  align-items: center;
}

.c-forgetPassword {
  align-self: center;
  margin-top: 20px;
}

.c-login__form .welcome h3 {
  margin-top: 0;
  font-size: 1.5rem;
  font-weight: 500;
}

.c-login__form .welcome p {
  width: 100%;
  margin: 0;
}

.c-login--input {
  width: 100%;
  height: 45px;
}

.loginForm .login-actions {
  width: 100%;
}

.c-login-btns__container {
  display: flex;
  gap: 0 12px;
}

.c-login__form .c-login--btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 16px;
  border-radius: 4px;
  background-color: var(--fmgPrimary);
  font-size: 1rem;
  color: #fff;
  transition: background-color 0.25s ease-in-out;
  cursor: pointer;
}
.c-login__form .c-login--btn:hover {
  background-color: var(--fmgPrimaryDark);
  transition: background-color 0.25s ease-in-out;
}

.c-login-btn--default {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 16px;
  border-radius: 4px;
  font-size: 1rem;
  color: var(--fmgTextColor);
  border: solid 1px #a5a5a5;
  background-color: #fff;
  transition: background-color 0.25s ease-in-out;
  cursor: pointer;
}
.c-login-btn--default:hover, .c-login-btn--default:active, .c-login-btn--default:focus {
  color: #000;
  border-color: #a5a5a5;
  background-color: #a2a2a2;
}

.c-login__input {
  width: 100%;
  position: relative;
}

.c-login__form input[type=text]:focus,
.c-login__form input[type=password]:focus,
.c-login__form textarea:focus {
  box-shadow: 0 0 5px rgb(81, 203, 238);
  border: 1px solid rgb(81, 203, 238);
}

.c-login__input .c-login--icn {
  position: absolute;
  top: 50%;
  left: 12px;
  z-index: 1;
  display: inline-block;
  font-family: "fmgicons";
  font-size: 19px;
  font-style: normal;
  font-weight: normal;
  color: #a5a5a5;
  transform: translateY(-55%);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.c-login__input .icn-user:before {
  font-family: "fmgicons";
  font-weight: normal;
  font-style: normal;
  line-height: inherit;
  display: inline-block;
  vertical-align: middle;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "N";
}
.c-login__input .icn-padlock:before {
  font-family: "fmgicons";
  font-weight: normal;
  font-style: normal;
  line-height: inherit;
  display: inline-block;
  vertical-align: middle;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "H";
}
.c-login__input .icn-key:before {
  font-family: "fmgicons";
  font-weight: normal;
  font-style: normal;
  line-height: inherit;
  display: inline-block;
  vertical-align: middle;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "Q";
}

.c-login--input {
  border: solid 1px #a5a5a5;
  height: 56px;
  padding: 16px 16px 16px 40px;
  border-color: rgba(0, 0, 0, 0.24);
  border-radius: 4px;
  line-height: 1.5;
  font-family: var(--fmgFont);
  font-size: var(--fmgBaseFontPx);
}
.c-login--input:focus {
  outline: none;
}

.loginForm .divScrollable {
  height: 180px;
  overflow: auto;
  border: 1px solid #666;
  background-color: White;
  color: var(--fmgTextColor);
  width: 445px;
  margin: 10px auto;
  text-align: initial;
}

.loginForm .divScrollable h2 {
  padding: 0 10px;
}

.loginForm .divScrollable .tnc--fmg {
  padding: 0;
}

.c-login__box .c-login-messages {
  height: auto;
  padding: 16px 24px;
  background: var(--fmgBannerError);
  color: var(--fmgTextColor);
  text-align: left;
}

.c-login__box .c-confirmation-msg {
  height: auto;
  padding: 16px;
  background-color: #4dd99c;
  color: var(--fmgTextColor);
  text-align: center;
}

.login-page-form .c-login-messages.login-saml-map {
  background-color: transparent;
  color: var(--fmgTextColor);
}

.loginForm .errorRequired .login-validation {
  display: none;
}

.c-login__form .inputRequired {
  background: #f1d1d3 !important;
  box-shadow: 0 0 5px rgb(231, 83, 68);
  border: 1px solid rgb(231, 83, 68);
}

.login-validation {
  display: block;
}

.required {
  color: #ee0000;
  line-height: 30px;
}

textarea.required,
input.required {
  color: var(--fmgTextColor);
}

.error {
  color: #ee0000;
}

.c-login__form .resetInfo {
  text-align: center;
}

.c-form__login:after {
  align-self: center;
  margin-top: 20px;
}

.c-login__require-password:after {
  align-self: center;
  margin-top: 20px;
}

.errorRequired:empty {
  display: none;
}

/*# sourceMappingURL=login-page-styles.css.map */