/* Patternfly CSS places a "bg-login.jpg" as the background on this ".login-pf" class.
   This clashes with the "keycloak-bg.png' background defined on the body below.
   Therefore the Patternfly background must be set to none. */
.login-pf {
  background: none;
}

.login-pf body {
  background-color: #ffffff;
  background-image: linear-gradient(
    140deg,
    #ffffff 0%,
    #ffffff 50%,
    #ffffff 75%
  );
  background-size: cover;
  height: 100%;
  position: relative;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

textarea.pf-c-form-control {
  height: auto;
}

.pf-c-alert__title {
  /*font-size: var(--pf-global--FontSize--xl);        old size */
  font-size: var(--pf-global--FontSize--md);
}

/* .alert-error.pf-c-alert.pf-m-inline.pf-m-danger {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
} */

p.instruction {
  margin: 5px 0;
  font-size: 25px;
}

.pf-c-button.pf-m-control {
  border: solid var(--pf-global--BorderWidth--sm);
  border-color: rgba(230, 230, 230, 0.5);
}

.login-pf-header {
  text-align: center;
}

h1#kc-page-title {
  margin-top: 10px;   /*existing*/
  margin-bottom: 10px;
    font-weight: bold;
    font-size: larger;
}

#kc-locale ul {
  background-color: var(--pf-global--BackgroundColor--100);
  display: none;
  top: 20px;
  min-width: 100px;
  padding: 0;
}

#kc-locale-dropdown {
  display: inline-block;
}

#kc-locale-dropdown:hover ul {
  display: block;
}

#kc-locale-dropdown a {
  color: var(--pf-global--Color--200);
  text-align: right;
  font-size: var(--pf-global--FontSize--sm);
}

a#kc-current-locale-link::after {
  content: "\2c5";
  margin-left: var(--pf-global--spacer--xs);
}

.login-pf .container {
  padding-top: 40px;
}

.login-pf a:hover {
  color: #0099d3;
}

#kc-logo {
  width: 100%;
}

/* 
div.kc-logo-text {
    background-image: url(../img/keycloak-logo-text.png);
    background-repeat: no-repeat;
    height: 63px;
    width: 300px;
    margin: 0 auto;
} */

div.kc-logo-text span {
  display: block;
}

#kc-header {
  color: #ededed;
  overflow: visible;
  white-space: nowrap;
}

#kc-header-wrapper {
  font-size: 45px;
  text-transform: uppercase;
  letter-spacing: 3px;
  line-height: 1.2em;
  padding: 62px 10px 20px;
  white-space: normal;
  font-weight: 700;
}

#kc-content {
  width: 100%;
}

#kc-attempted-username {
  font-size: 20px;
  font-family: inherit;
  font-weight: normal;
  padding-right: 10px;
}

#kc-username {
  text-align: center;
  margin-bottom: -10px;
}

#kc-webauthn-settings-form {
  padding-top: 8px;
}

#kc-form-webauthn .select-auth-box-parent {
  pointer-events: none;
}

#kc-form-webauthn .select-auth-box-desc {
  color: var(--pf-global--palette--black-600);
}

#kc-form-webauthn .select-auth-box-headline {
  color: var(--pf-global--Color--300);
}

#kc-form-webauthn .select-auth-box-icon {
  flex: 0 0 3em;
}

#kc-form-webauthn .select-auth-box-icon-properties {
  margin-top: 10px;
  font-size: 1.8em;
}

#kc-form-webauthn .select-auth-box-icon-properties.unknown-transport-class {
  margin-top: 3px;
}

#kc-form-webauthn .pf-l-stack__item {
  margin: -1px 0;
}

#kc-content-wrapper {
  margin-top: 20px;
}

#kc-form-wrapper {
  margin-top: 10px;
}

#kc-info {
  /* margin: 20px -40px -30px; */
}

#kc-info-wrapper {
  font-size: 13px;
  /* padding: 10px 35px; */
  /* background-color: #f0f0f0; */
}

#kc-form-options span {
  display: block;
}

#kc-form-options .checkbox {
  margin-top: 0;
  color: #72767b;
}

#kc-terms-text {
  margin-bottom: 10px;
  height: 440px;
  overflow-y: scroll;
}

#kc-registration {
  margin-bottom: 0;
}

/* TOTP */

.subtitle {
  text-align: right;
  margin-top: 30px;
  color: #909090;
}

.required {
  color: var(--pf-global--danger-color--200);
}

ol#kc-totp-settings {
  margin: 0;
  padding-left: 20px;
}

ul#kc-totp-supported-apps {
  margin-bottom: 10px;
}

#kc-totp-secret-qr-code {
  max-width: 150px;
  max-height: 150px;
}

#kc-totp-secret-key {
  background-color: #fff;
  color: #333333;
  font-size: 16px;
  padding: 10px 0;
}

/* OAuth */

#kc-oauth h3 {
  margin-top: 0;
}

#kc-oauth ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#kc-oauth ul li {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 12px;
  padding: 10px 0;
}

#kc-oauth ul li:first-of-type {
  border-top: 0;
}

#kc-oauth .kc-role {
  display: inline-block;
  width: 50%;
}

/* Code */
#kc-code textarea {
  width: 100%;
  height: 8em;
}

/* Social */
.kc-social-links {
  margin-top: 20px;
}

.kc-social-provider-logo {
  font-size: 23px;
  width: 30px;
  height: 25px;
  float: left;
}

.kc-social-gray {
  color: var(--pf-global--Color--200);
}

.kc-social-item {
  margin-bottom: var(--pf-global--spacer--sm);
  font-size: 15px;
  text-align: center;
}

.kc-social-provider-name {
  position: relative;
  top: 3px;
}

.kc-social-icon-text {
  left: -15px;
}

.kc-social-grid {
  display: grid;
  grid-column-gap: 10px;
  grid-row-gap: 5px;
  grid-column-end: span 6;
  --pf-l-grid__item--GridColumnEnd: span 6;
}

.kc-social-grid .kc-social-icon-text {
  left: -10px;
}

.kc-login-tooltip {
  position: relative;
  display: inline-block;
}

.kc-social-section {
  text-align: center;
}

.kc-social-section hr {
  margin-bottom: 10px;
}

.kc-login-tooltip .kc-tooltip-text {
  top: -3px;
  left: 160%;
  background-color: black;
  visibility: hidden;
  color: #fff;

  min-width: 130px;
  text-align: center;
  border-radius: 2px;
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.6);
  padding: 5px;

  position: absolute;
  opacity: 0;
  transition: opacity 0.5s;
}

/* Show tooltip */
.kc-login-tooltip:hover .kc-tooltip-text {
  visibility: visible;
  opacity: 0.7;
}

/* Arrow for tooltip */
.kc-login-tooltip .kc-tooltip-text::after {
  content: " ";
  position: absolute;
  top: 15px;
  right: 100%;
  margin-top: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: transparent black transparent transparent;
}

@media (min-width: 768px) {
  #kc-container-wrapper {
    position: absolute;
    width: 100%;
  }

  .login-pf .container {
    padding-right: 80px;
  }

  #kc-locale {
    position: relative;
    text-align: right;
    z-index: 9999;
  } 
}

@media (max-width: 767px) {
  .login-pf body {
    background: white;
  }

  #kc-header {
    padding-left: 15px;
    padding-right: 15px;
    float: none;
    text-align: left;
  }

  #kc-header-wrapper {
    font-size: 16px;
    font-weight: bold;
    padding: 20px 60px 0 0;
    color: #72767b;
    letter-spacing: 0;
  }

  div.kc-logo-text {
    margin: 0;
    width: 150px;
    height: 32px;
    background-size: 100%;
  }

  #kc-form {
    float: none;
  }

  #kc-info-wrapper {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background-color: transparent;
  }

  .login-pf .container {
    padding-top: 15px;
    padding-bottom: 15px;
  }

  #kc-locale {
    position: absolute;
    width: 200px;
    top: 20px;
    right: 20px;
    text-align: right;
    z-index: 9999;
  }
}

@media (min-height: 646px) {
  #kc-container-wrapper {
    bottom: 12%;
  }
}

@media (max-height: 645px) {
  #kc-container-wrapper {
    padding-top: 50px;
    top: 20%;
  }
}

.card-pf form.form-actions .btn {
  float: right;
  margin-left: 10px;
}

#kc-form-buttons {
  margin-top: 5px;
}

.login-pf-page .login-pf-brand {
  margin-top: 20px;
  max-width: 360px;
  width: 40%;
}

.select-auth-box-arrow {
  display: flex;
  align-items: center;
  margin-right: 2rem;
}

.select-auth-box-icon {
  display: flex;
  flex: 0 0 2em;
  justify-content: center;
  margin-right: 1rem;
  margin-left: 3rem;
}

.select-auth-box-parent {
  border-top: 1px solid var(--pf-global--palette--black-200);
  padding-top: 1rem;
  padding-bottom: 1rem;
  cursor: pointer;
}

.select-auth-box-parent:hover {
  background-color: #f7f8f8;
}

.select-auth-container {
  padding-bottom: 0px !important;
}

.select-auth-box-headline {
  font-size: var(--pf-global--FontSize--md);
  color: var(--pf-global--primary-color--100);
  font-weight: bold;
}

.select-auth-box-desc {
  font-size: var(--pf-global--FontSize--sm);
}

.select-auth-box-paragraph {
  text-align: center;
  font-size: var(--pf-global--FontSize--md);
  margin-bottom: 5px;
}

.card-pf {
  margin: 0 auto;
  box-shadow: var(--pf-global--BoxShadow--lg);
  padding: 0 20px;
  max-width: 500px;
  border-top: 4px solid;
  border-color: var(--pf-global--primary-color--100);
}

/*phone*/
@media (max-width: 767px) {
  .login-pf-page .card-pf {
    max-width: none;
    margin-left: 0;
    margin-right: 0;
    padding-top: 0;
    border-top: 0;
    box-shadow: 0 0;
  }

  .kc-social-grid {
    grid-column-end: 12;
    --pf-l-grid__item--GridColumnEnd: span 12;
  }

  .kc-social-grid .kc-social-icon-text {
    left: -15px;
  }
}

.login-pf-page .login-pf-signup {
  font-size: 15px;
  color: #72767b;
}

#kc-form-login .login-pf-settings {
  display: flex;
  width: 100%;
  justify-content: space-between;
  /*margin-top: 0.5rem */;
  margin-top: -0.5rem;
  margin-bottom: 0.5rem;
}

#kc-registration {
  margin-top: 1rem;
  width: 100%;
  justify-content: center;
  display: flex;
  font-size: 1rem;
}

#kc-content-wrapper .row {
  margin-left: 0;
  margin-right: 0;
}

.login-pf-page.login-pf-page-accounts {
  margin-left: auto;
  margin-right: auto;
}

.login-pf-page .btn-primary {
  margin-top: 0;
}

.login-pf-page .list-view-pf .list-group-item {
  border-bottom: 1px solid #ededed;
}

.login-pf-page .list-view-pf-description {
  width: 100%;
}

#kc-form-login div.form-group:last-of-type,
#kc-register-form div.form-group:last-of-type,
#kc-update-profile-form div.form-group:last-of-type,
#kc-update-email-form div.form-group:last-of-type {
  margin-bottom: 0px;
}

.no-bottom-margin {
  margin-bottom: 0;
}

#kc-back {
  margin-top: 5px;
}

/* Recovery codes */
.kc-recovery-codes-warning {
  margin-bottom: 32px;
}

.kc-recovery-codes-warning .pf-c-alert__description p {
  font-size: 0.875rem;
}

.kc-recovery-codes-list {
  list-style: none;
  columns: 2;
  margin: 16px 0;
  padding: 16px 16px 8px 16px;
  border: 1px solid #d2d2d2;
}

.kc-recovery-codes-list li {
  margin-bottom: 8px;
  font-size: 11px;
}

.kc-recovery-codes-list li span {
  color: #6a6e73;
  width: 16px;
  text-align: right;
  display: inline-block;
  margin-right: 1px;
}

.kc-recovery-codes-actions {
  margin-bottom: 24px;
}

.kc-recovery-codes-actions button {
  padding-left: 0;
}

.kc-recovery-codes-actions button i {
  margin-right: 8px;
}

.kc-recovery-codes-confirmation {
  align-items: baseline;
  margin-bottom: 16px;
}

/* End Recovery codes */

.container-fluid {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  height: 100vh;
  position: relative;
}

.branding {
  flex: 1;
  background-color: transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 0;
  bottom: 0;
  top: 0;
}

.branding h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: #333;
}

.branding img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.login {
  flex: 1;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  padding: 1rem;
  width: 25%;
  position: absolute;
  right: 10%;
  border-radius: 20px;
}

.login h2 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  margin: 10px 0 30px 0;
  color: #333;
  font-weight: 500;
}

.login form {
  width: 100%;
  display: block;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
  
.login input[type="text"],
.login input[type="password"] {
  width: 100%;
  font-size: 1rem;
  background: transparent;
  outline: none;
  height: 35px;
  color: #242e4a;
  transition: 0.3s;
  border: 1px solid #d5d6d9;
  border-radius: 4px;
  margin: 0px 0px 18px;
  padding: 20px 10px !important;
}
  
.login .password-wc {
  margin-bottom: 2px;
}

input[type="submit"], .msig-theme-button {
  background: rgb(27, 10, 100);
  /*border-radius: 30px;*/
  border-radius: 5px;
  font-weight: 700;
}
input[type="submit"]:hover, .msig-theme-button:hover {
  background: rgb(225, 31, 39);
  border-radius: 30px;
  font-weight: 700;
}

.error-class-main{
  z-index: 99;
}

.login button {
  padding: 0.5rem 2rem;
  background-color: #333;
  color: #fff;
  border: none;
  border-radius: 5px;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.login button:hover {
  background-color: #555;
}

.alert-warning.pf-c-alert.pf-m-inline.pf-m-warning,
.alert-success.pf-c-alert.pf-m-inline.pf-m-success,
.alert-info.pf-c-alert.pf-m-inline.pf-m-info,
.alert-error.pf-c-alert.pf-m-inline.pf-m-danger {
  position: absolute;
  top: 10px;
  left: 55%;
  transform: translateX(-10%);
  text-align: left;
  padding: 7px 7px 10px 7px;
}

.pf-c-button.pf-m-primary {
  /*background-color: #1b1464;*/
  background-image: linear-gradient(blue,indigo);
  height: 35px;
}

.pf-c-button.pf-m-primary:hover {
  background-color: #e11f27;
}

.pf-c-button.pf-m-secondary {
  color: #fff;
  background-color: #6a6e73;
}

.copyright {
    text-align: center;
}

 .field-icon {
  width: 16px;
  position: absolute;
  top: 44px;
  left: 12px;
 }
 
 .login-field {
   position: relative;
   margin-bottom: 0px;
 }
 
  #password, .loginId {
    padding-left: 35px !important;
  }

  
  #backToLoginBtn {
    display : block !important;
  }
  
  .loginId, #username {
  /* padding: 17px 35px !important; */
  }

/* Responsive Styles */

/*
@media screen and (min-height: 600px) { 
  .login 
   {
      width: 44% !important;
      min-height: 90% !important;
      max-height: 100% !important;
      overflow-y: auto !important;
      overflow-x: hidden !important;
      padding: 10px !important;
      right: 1% !important;
  }
  
  #footerNonMobile {
    font-size: x-small;
    margin-top: 20px;
    margin-bottom: 20px;
  }
  .copyright{
    font-size: smaller;
    text-align: center;
  }
}  */

/*
@media screen and (min-width: 1025px) and (max-width: 1280px) { 
  .login {
    width: 40% !important;
    min-height: 70% !important;
    max-height: 90% !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    padding: 0px !important;
    right: 3% !important;
  }
  .login form {
    overflow: overlay;
  }
  .branding img {
    width: 90%;
    height: 90%;
  }
  #footer-body {
    margin-top: 25px !important;
    font-size: smaller;
    margin-bottom: 30px;
  }

}  */

/* @media screen and (max-width: 768px), (min-width: 852px) and (max-width: 1024px) { */
/*@media screen and (max-width: 768px) {   //existing    */
@media screen and (max-width: 956px) {
  .container-fluid {
    flex-direction: column;
    height: auto;
    position: relative;
  }

  .branding {
    height: 50vh;
  }

  .branding img {
    width: 150px;
    height: 150px;
  }

 /* new style starts here for mobile login*/ 
    .login {
      position: fixed;
      left: 0;
      top: 0;
      height: 100vh !important;
      width: 100vw !important;
      background-image: url(../img/login-bg.png);
      background-size: contain;
      border-radius: 0;
      max-height: unset !important;
      padding: 0px !important;
      /*max-height: unset !important;*/
  }
  
  #footer{
    color: lightgray;
  }
  
  .login-mail, .login-phone{
    background: white;
  }
  .pf-c-form__label-text {
   color: white;
   font-size: 12px !important;
   margin-top: 12px !important;
   margin-bottom: 2px !important;
   /*font-size: 14px !important; */
  }
  #username, #password, #userfullname, #icno, #contactNo, #mothersMaidenName, #accountCode  {
    color: black;
    background-color: white;
    margin-top: 3px;
    padding-left: 12px;
  }

  #kc-reset-password-form #username {
    margin-bottom: 12px !important;
  }

  #userfullname, #icno, #contactNo, #mothersMaidenName, #accountCode  {
    margin-bottom: 12px !important;
  }

  
  .loginId, #password {
    padding-left: 35px;
    padding-top: 0px;
  }

  #togglePassword {
    color: darkgrey;
    background-color: transparent;
  }
  
  /* new 31-1-25  */
  h1#kc-page-title {
    margin-top: 0px;
    margin-bottom: 0px;
  }
  
  .login-mobile-pf-page {
     /*margin: 35px; */
  }
  
  #kc-form-login {
    padding-left: 32px;
    padding-right: 32px;
  }
  .login-header{
    font-size: 25px !important;
    color: #ffffff !important;
    font-weight: normal !important;
    margin-left: 32px !important;
    margin-top: 46px !important;
    margin-bottom: 20px !important;
  }
   #kc-page-title 
  {
    font-style: normal;
    color: white;
  }

  a {
      color: #FFFFFF !important;
      text-decoration: underline !important;
      font-weight: 100 !important;
      font-size: 12px !important;
  }
  
  #footerForMobile {
    display: block !important;
    /*position: relative;
    bottom: 25px; */
    /*margin-top:10%; */
   /* margin-top:auto; */ 
  }
  #footerNonMobile {
    display: none;
  }
  
  #kc-form-buttons {
   /* margin-top: 45px !important; */
     margin-top: 15px !important;
  }
  
  .pf-c-button.pf-m-primary {
 /*   color: #5c05d4 !important;
    background-color: white !important; */
    height: 45px;
    font-size: large;
    font-weight: 600;
  }
  
  #kc-reset-password-form {
    padding-top: 5px;
    padding-right: 35px;
    padding-left: 35px;
  }

   .warningMessage {
    font-size: 11px;
    color: #ffffff;
    margin-top: 2px;
    font-weight: 300;
   }
   
   .btn-lg {
      background-color: #fff !important;
      background-image: none !important;
      color: #69279fd6 !important;
    }
    
  .copyright {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    /*background-color: #f3f0f0;*/
    padding-bottom: 8px;
    padding-top: 8px;
    font-size: 10px;
    text-align: center;
    font-weight: 400;
    text-align: center;
   }
   
   #kc-login {
    margin-top: 46px !important;
    margin-bottom: 60px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
   }
   
   #resetUseridSubmit, #resetPasswordSubmit {
    font-size: 14px !important;
    font-weight: 600 !important;
    margin-top: 14px !important;
   }
   
   
   .login-phone, .login-mail{
    width: 18px;
    margin: 2px 5px 3px 0px;
    background: transparent;
    }
    
    .contact-text {
      margin-left: 30px;
      font-size: 12px;
      font-weight: normal;
    }
    
    .timings {
      text-align: left;
      margin-left: 30px;
      font-size: 9px;
    }
    
   .uname, .pwd {
    padding-left: 40px !important;
   }
    
   .login-fld {
        margin-bottom: 0px !important
   } 
        
   .field-icon {
    top: 46px;
   }     
        
   .forgotTitle {
    font-size: 24px !important;
    color: #ffffff !important;
    font-weight: normal !important;
    margin-left: 36px;
    text-align: left;
    margin-top: 10px;
   }
   
   .form-group {
     margin-bottom: 0px !important; 
   }
   
   #backToLoginBtn {
    display : none !important;
  }
  
  .login input[type="text"],
  .login input[type="password"] {
    margin: 3px 0px 0px !important;
    padding: 14px 10px !important;
  }
  
  .loginId {
     padding: 17px 35px !important;
  }
  #username {
     padding: 17px 10px !important;
  }

  #kc-info-wrapper {
    color: #ffffff;
    padding: 0px 34px 0px 34px;
    font-size: 10px;
    font-weight: 300;
    text-align: justify;
  }

  #kc-info {
      margin-top: -10px;
  }
  
  .alert-warning.pf-c-alert.pf-m-inline.pf-m-warning, .alert-success.pf-c-alert.pf-m-inline.pf-m-success, .alert-info.pf-c-alert.pf-m-inline.pf-m-info, .alert-error.pf-c-alert.pf-m-inline.pf-m-danger {
        position: sticky;
        text-align: left;
        padding: 7px 7px 10px 7px;
        width: 88% !important;
        margin-top: 70px;
  }
  .container-fluid {
    margin-right: 4px;
    margin-left: 4px;
    padding-right: 0px;
    padding-left: 17px;
  }

  #kc-form-login .login-pf-settings {
    margin-top: 0rem !important;
    margin-bottom: 0px !important;
  }


  /* new style ends here for mobile login*/
}        
      
  #kc-login {
    height: 45px;
    margin: 14px 0px 18px 0px;
   }
  
.login-header {
   font-size: 24px;
   /*margin-bottom: 0px;*/
   color: #1b1464;
   font-weight: bold;
   /*margin: 14px 0px 14px 0px; */
    margin-bottom: 10px;
}

.login-logo {
    height: auto;
    width: auto;
    vertical-align: top;
}

.logo-text {
    font-size: 35px;
    font-weight: bold;
}

.login-desc {
   font-size: 24px;
   margin-bottom: 10px;
   color: #1b1464;
   margin-top: -120px;
   margin-bottom: 143px;
   text-align: right;
}

.login-sub-header { 
    position: absolute;
    margin: -132px 0px 0px 0px;
   font-size: 24px;
   color: #1b1464;
   font-weight: bold;
}	

.btn-forgot-password {
	margin-top: 20px;
	border-radius: 30px;
	font-weight: 700;
}

/* custom css changes  */
.bg-card{
  border-radius: 0.5rem;
  background-color: #fefefa;
  margin-top: 15px;
}
.bck_btn{
  display: flex;
  align-items: center;
  border: 1.5px solid #4949f2 !important;
  background-color: #eeedfa !important;
  border-radius: 0.5rem !important;
  padding: 0.5rem !important;
  font-weight: 500;
  color: #0000ffa8 !important;
  font-size: 0.9rem !important;
  position: relative;
  left:10px;
  height: 2.5rem;
}
.sub-btn{
  display: flex !important;
  align-items: center !important;
  color: white !important;
  background-image: linear-gradient(180deg, #4138a3e0, #4138a3) !important;
  border: none !important;
  border-radius: 0.5rem!important;
  padding: 0.5rem !important;
  position: absolute;
  right: 31px;
  height: 2.5rem;
}
 
.btn-wrap{
  display: flex;
  justify-content: space-between;
  margin: 0px !important;
  padding: 0.5rem;
}
.img_pw{
  top: 7px;
  position: relative;
}
 
.fld-wrapper{
  padding-left: 32px;
    display: block;
    box-sizing: content-box;
}
.lbl_sze{
  font-size: 1rem;
  padding: 0px;
}
.forgot_lbl{
  padding: 0px 42px 0px 0px;
}
.instruct_msg{
 padding: 0px 0px 0px 23px;
}

@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css");
.password-reveal {
  color: #0052f0;
  background-color: white;
  margin-left: -40px;
  font-size: 18px !important;
}

#kc-accept, #kc-decline{
  padding: 0px 10px 0px 10px;
}

.no-margin-bottom {
    margin-bottom: 0px;
}