/* RTA Fonts */
@font-face {
    font-family: 'RTA-Light';
    src: url('../_fonts/RTA-Light.eot');
    src: url('../_fonts/RTA-Light.eot?#iefix') format('embedded-opentype'), url('../_fonts/RTA-Light.ttf') format('truetype');
    font-display: swap;
    
}

@font-face {
    font-family: 'RTA-Regular';
    src: url('../_fonts/RTA-Regular.eot');
    src: url('../_fonts/RTA-Regular.eot?#iefix') format('embedded-opentype'), url('../_fonts/RTA-Regular.ttf') format('truetype');
    font-display: swap;
}

@font-face {
    font-family: 'RTA-Bold';
    src: url('../_fonts/RTA-Bold.eot"');
    src: url('../_fonts/RTA-Bold.eot?#iefix') format('embedded-opentype'), url('../_fonts/RTA-Bold.ttf') format('truetype');
    font-display: swap;
}


:root {

    --bs-blue: #0d6efd;
    --bs-indigo: #6610f2;
    --bs-purple: #6f42c1;
    --bs-pink: #d63384;
    --bs-red: #dc3545;
    --bs-orange: #fd7e14;
    --bs-yellow: #ffc107;
    --bs-green: #198754;
    --bs-teal: #20c997;
    --bs-cyan: #0dcaf0;
    --bs-black: #000;
    --bs-white: #fff;
    --bs-gray: #6c757d;
    --bs-gray-dark: #343a40;
    --bs-gray-100: #f8f9fa;
    --bs-gray-200: #e9ecef;
    --bs-gray-300: #dee2e6;
    --bs-gray-400: #ced4da;
    --bs-gray-500: #adb5bd;
    --bs-gray-600: #6c757d;
    --bs-gray-700: #495057;
    --bs-gray-800: #343a40;
    --bs-gray-900: #212529;
    --bs-primary: #1A278B;
    --bs-secondary: #6c757d;
    --bs-success: #198754;
    --bs-info: #0dcaf0;
    --bs-warning: #EEB211;
    --bs-danger: #dc3545;
    --bs-light: #f8f9fa;
    --bs-dark: #212529;
    --bs-primary-rgb:rgba(23, 28, 143, 1);
    --bs-secondary-rgb: 108, 117, 125;
    --bs-success-rgb: 25, 135, 84;
    --bs-info-rgb: 13, 202, 240;
    --bs-warning-rgb: 238, 178, 17;
    --bs-danger-rgb: 220, 53, 69;
    --bs-light-rgb: 248, 249, 250;
    --bs-dark-rgb: 33, 37, 41;
    --bs-white-rgb: 255, 255, 255;
    --bs-black-rgb: 0, 0, 0;
    --bs-body-color-rgb: 33, 37, 41;
    --bs-body-bg-rgb: 255, 255, 255;
    --bs-font-sans-serif: 'RTA-Regular', sans-serif;
    --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    --bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
    --bs-body-font-family: var(--bs-font-sans-serif);
    --bs-body-font-size: 0.8rem;
    --bs-body-font-weight: 400;
    --bs-body-line-height: 1.5;
    --bs-body-color: #212529;
    --bs-body-bg: #fff;
    --bs-border-width: 1px;
    --bs-border-style: solid;
    --bs-border-color: #dee2e6;
    --bs-border-color-translucent: rgba(0, 0, 0, 0.175);
    --bs-border-radius: 0.375rem;
    --bs-border-radius-sm: 0.25rem;
    --bs-border-radius-lg: 0.5rem;
    --bs-border-radius-xl: 1rem;
    --bs-border-radius-2xl: 2rem;
    --bs-border-radius-pill: 50rem;
    --bs-link-color: #0768f7;
    --bs-link-hover-color: #0a58ca;
    --bs-code-color: #d63384;
    --bs-highlight-bg: #fff3cd;
    --box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
    --bg-background: #F8F8F8;
    --bg-brand-green: #D0CD29;

    --color-white: #ffffff;
    --color-light: #fafaff;
    --color-input-light: #f0f0fc;
    --color-black: #121212;
    --color-night: #001632;
    --color-red: #E71425;
    --color-blue: #1A278B;
    --color-gray: #80868b;
    --color-grayish: #dadce0;
    --shadow-normal: 0 1px 3px 0 rgba(0, 0, 0, 0.1),
        0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-medium: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
        0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-large: 0 15px 30px -3px rgba(0, 0, 0, 0.1),
        0 4px 6px -2px rgba(0, 0, 0, 0.05);
  }
  
  html {
    font-size: 100%;
    font-size-adjust: 100%;
    box-sizing: border-box;
    scroll-behavior: smooth;
  }
  
  *,
  *::before,
  *::after {
    padding: 0;
    margin: 0;
    box-sizing: inherit;
    list-style: none;
    list-style-type: none;
    text-decoration: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
  }
  
  body {
    font-family: 'RTA-Regular', sans-serif;
    font-size: 1rem;
    font-weight: normal;
    line-height: 1.5;
    color: var(--color-black);
    background: var(--color-light);
     background: linear-gradient(180deg, rgba(255,255,255,0.25) 0%, rgba(250,250,255,1) 100%);
  }

  
  a,
  button {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    cursor: pointer;
    border: none;
    outline: none;
    background: none;
    text-decoration: none;
  }
  
 
  
  .text {
    font-family: inherit;
    line-height: inherit;
    text-transform: unset;
    text-rendering: optimizeLegibility;
  }
  .text-large {
    font-size: 2rem;
    font-weight: 600;
  }
  .text-normal {
    font-size: 1rem;
    font-weight: 400;
    color: var(--color-black);
  }

  .text-small {
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--color-gray);
  }

  .text-links {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--color-blue);
  }
  .text-links:hover {
    text-decoration: underline;
  }
  
  .main {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;  
    height: 100vh;  
  }

  .heading {
    text-align: center;

  }

  .heading h2 {
    color: var(--color-blue) ;
  }

  
  header.logo-wrapper {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 1em;
    max-width: 62rem;
    
  }

#lottie-resetfailed {
  width:150px;
  height:150px;
}

#lottie-resetsuccess {
  width:150px;
  height:150px;
}


   .login-wrapper {
    padding: 2rem 2.5rem;
    border: none;
    outline: none;
    border-radius: 0.25rem;
    color: var(--color-black);
    background: var(--color-white);
    box-shadow: var(--shadow-large);
    align-self: center;
    position: relative;
    border-bottom: 2px solid rgba(29, 39, 139, 0.5);
  }

  .form-wrapper {    
    padding: 2rem 2.5rem;
    border: none;
    outline: none;
    border-radius: 0.25rem;
    color: var(--color-black);
    background: var(--color-white);
    box-shadow: var(--shadow-large);
    position: relative;
    border-bottom: 2px solid rgba(29, 39, 139, 0.5);
  }

  .main .login-wrapper .form {
    width: 100%;
    height: auto;
    margin-top: 2rem;
  }

  /* .iam-logo {
    position: absolute;
    top: -30px;
    inset-inline-start: calc(50% - 50px);
    background-color: var(--color-blue);
    box-shadow: 0 15px 30px -3px rgba(26, 39, 139, 0.1),
    0 4px 6px -2px rgba(26, 39, 139, 0.05);;
    padding:1em;
    border-radius: 0.5em;
    width:90px;
    height: 90px;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    
  } */

  input.larger {
    transform: scale(1.5);
    margin-inline: 5px 10px;
  }

  .main .login-wrapper .form .input-control {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.25rem;
    flex-direction: column;
    font-size: 0.8em;
    color: var(--color-gray);
    position: relative;
  }

  .input-label {
    font-size: 0.8rem;
    margin-bottom: 0.2rem;
  }


  .main .login-wrapper .form #username.input-field,   .main .login-wrapper .form #password.input-field {
    font-family: inherit;
    font-size: 1rem;
    font-weight: 400;
    line-height: inherit;
    width: 100%;
    height: auto;
    padding: 0.75rem 0 0.75rem 0;
    padding-inline: 2.8rem;
    outline: none;
    border-radius: .3rem;
    color: var(--color-black);
    background-color: var(--color-input-light);
    text-transform: unset;
    text-rendering: optimizeLegibility;
    border: 1px solid #d7d7f7;
  }

  .main .login-wrapper .form .input-field {
    font-family: inherit;
    font-size: 1rem;
    font-weight: 400;
    line-height: inherit;
    width: 100%;
    height: auto;
    padding: 0.75rem 0.75rem;
    outline: none;
    border-radius: 0.3rem;
    color: var(--color-black);
    background-color: var(--color-input-light);
    text-transform: unset;
    text-rendering: optimizeLegibility;
    border: 1px solid #d7d7f7;
  }

  .main .login-wrapper .form .input-field:focus {
    color: var(--color-black);
    box-shadow: var(--shadow-large);
    transition: all 0.5s;
    border:1px solid transparent !important;
  }

  .user-icon {
    position: absolute;
    inset-block-start: 10px;
    inset-inline-start: 10px;
  }

  .pwd-icon {
    position: absolute;
    inset-block-start: 10px;
    inset-inline-start: 10px;
  }

  .pwd-show-icon {
    position:absolute;
    inset-block-start: 10px;
    inset-inline-end: 10px;
  }
  .main .login-wrapper .form .input-submit {
    font-family: inherit;
    font-size: 1rem;
    font-weight: 500;
    line-height: inherit;
    cursor: pointer;
    min-width: 40%;
    height: auto;
    padding: 0.65rem 1.25rem;
    border: none;
    outline: none;
    border-radius: .3rem;
    color: var(--color-white);
    background: var(--color-blue);
    box-shadow: var(--shadow-medium);
    text-transform: capitalize;
    text-rendering: optimizeLegibility;
    margin: 1em 0 1.5em;
  }

  .main .login-wrapper .form .input-submit:hover {
    background: var(--color-red);
    box-shadow: var(--shadow-large);
    text-transform: capitalize;
    text-rendering: optimizeLegibility;
  }

  .iam-powered {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 0.9em;
    margin-top: 3em;
  }
  
  .iam-logo-text {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .iam-powered span {
    margin-inline-start: 0.3em;
    color: var(--color-blue);
  }

  .m-0 {
    margin: 0 !important;
  }

  .m-1 {
    margin: 1rem !important;
  }

  .support-links {
    display: flex;
    justify-content: space-between;
  }

  .error-msg {
    background-color: rgba(230, 0 , 0, 0.32);
    font-size:0.80rem;
    border-radius:0.3rem;
    text-align: center;
    padding: 7px 3px 3px 3px;
  }
  
  footer {
    padding: 1em;
  }



  /* Logout Page */

main.container-md {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  height: 100vh;
}

  .logout_message {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: 2rem;
  }

  .logout_icon {
    width: 100px;
    height:100px;
    border-radius: 50%;
    background-color: var(--color-blue) ;
    box-shadow: var(--shadow-medium);
    margin-bottom: 0.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .logout_msg {
    font-size: 1.5rem;
    color: var(--color-blue);
    font-weight: bold;
  }

.systems_wrapper {
  box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  max-height: 50vh;
  overflow-y: auto;
  background-color: var(--bs-white);
}

.systems_wrapper::-webkit-scrollbar {
  width: 8px;
}

/* Track */
.systems_wrapper::-webkit-scrollbar-track {
  background-color:#D9D9D9;
  border-radius: 10px;
}
 
/* Handle */
.systems_wrapper::-webkit-scrollbar-thumb {
  background: var(--color-blue) ; 
  border-radius: 10px;
}

/* Handle on hover */
.systems_wrapper::-webkit-scrollbar-thumb:hover {
  background: #b30000; 
}

.section {
  scrollbar-color: #6969dd #e0e0e0;
  scrollbar-width: thin;
}

a.system_lists {
    padding: 1rem;
    background-color: #fff;
    margin-bottom: 24px;
    -webkit-box-shadow: 0 0 4px 0px #e9e9fd;
    box-shadow: 0 0 4px 0px #e9e9fd;
    transition: all 0.5s ease;
    height: 112px;
    box-sizing: border-box; 
    overflow: hidden;  
}

a.system_lists:hover {
  -webkit-box-shadow: 0 0 14px 0px #d0d0e2;
  box-shadow: 0 0 14px 0px #d0d0e2;
  
}

span.system_name {
  color: #171c8f;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

span.system_desc {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
  


/*----------------- Password Validation ---------------*/
.progress {
  height: 3px !important;
}

.pw-valid-wrapper {
  display: flex;
  justify-content: space-between;
}

.pw-valid-wrapper li>div {
  font-size: 0.8rem;
  color: var(--bs-gray-500);
  text-align: center;
  display: flex;
  flex-direction: column;
  transition: all 600ms ease;
  justify-content: center;
  align-items: center;
}

.pw-valid-wrapper li svg {
  fill:var( --bs-gray-200);
  transition: fill 500ms ease;
}

.pw-valid-wrapper li.pw-require > div svg {
  min-height: 40px;
}

#confirmPassword-feedback {
  color: red;
}


.pw-valid-wrapper li .active {
  color: var(--bs-success);
}

.pw-valid-wrapper li .active svg {
  fill: var(--bs-success);
}

.progress-bar-danger {
  background-color: var(--bs-danger);
}

.progress-bar-warning {
  background-color: var(--bs-warning);
}

.progress-bar-success {
  background-color: var(--bs-success);
}

li.passwordpolicy {
    list-style: disc !important;
    list-style-type: disc !important;
}

button:disabled {
  opacity: 0.5;
  pointer-events: none;
}

 @media (max-width: 575.98px) { 

    header.logo-wrapper {
      justify-content: center;
     }

     .logo_govDubai {
      display: none;
     }

     .container {
      margin: 0 0.75rem;
     }

     .form-wrapper h2 {
      font-size: 1.5rem;
     }

     .form-wrapper h5 {
      font-size: 1.1rem;
     }

   }