.penso-login {
    /* background: url(../../assets/img/login/bg-login.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat; */
    width: 100%;
    height: 100vh;
    display: inline-block;
    vertical-align: top;
    background: #1C524D;
}
.login-right-height {
  height: calc(100vh - 50px);
}
.opacity-75 {
    opacity: .6;
}
.fw-bold {
    font-weight: bold;
}
.keypad{
    margin: 5em auto;    
}
.keypad-numbers .item h2 {
    display: none;
}
.l-link {
    margin: 0 10px;
    color: #000;
}
.l-link:hover {
    text-decoration: underline;
}
  .keypad {
    height: auto;
    overflow: hidden;
    position: relative;
    width: 288px;
    
  }
  .keypad-bg {
    background: #F4F4F4;
    padding: ;
    display: inline-block;
  }
  .forgot-link {
    margin-top: 150px !important;
    display: inline-block;
    width: 100%;
  }
  .login-right-height .forgot-link {
    margin-top: 0px !important;
  }
  /* .forgot-link a.l-link {
    background: #5C5C5C;
    color: #fff;
    padding: 10px 20px;
    border-radius: 7px;
  } */
  .forgot-link a.l-link {
    text-decoration: none;
    margin: 0 0 0 20px;
  }
  /* #weatherWidget {
    position: absolute;
    left: 40px;
    bottom: 40px;
  } */
  
  .keypad:focus{
            outline: 0;
          -webkit-box-shadow: inset 0 0 0 1px rgba(51, 153, 255, 1), 0 1px 1px rgba(255, 255, 255, 0.5), 0 0 5px rgba(51, 153, 255, 0.75);
          -moz-box-shadow: inset 0 0 0 1px rgba(51, 153, 255, 1), 0 1px 1px rgba(255, 255, 255, 0.5), 0 0 5px rgba(51, 153, 255, 0.75);
          box-shadow: inset 0 0 0 1px rgba(51, 153, 255, 1), 0 1px 1px rgba(255, 255, 255, 0.5), 0 0 5px rgba(51, 153, 255, 0.75);
  }
  .keypad .keypad-input-field {
    height: 40px;
    margin: auto;
    position: relative;
    transition: all 0.25s;
    transition-delay: 0.1s;
    width: 90%;
  }
  .keypad .keypad-input-field:after {
    background-color: rgba(0, 0, 0, 0.2);
    bottom: 0px;
    content: '';
    height: 1px;
    left: 0px;
    position: absolute;
    width: 100%;
  }

  .keypad .entered-numbers-wrapper {
    height: 30px;
    left: 0px;
    overflow: hidden;
    position: absolute;
    top: 5px;
    width: 100%;
  }
  .keypad .entered-numbers {
    height: 30px;
    left: 50%;
    overflow: hidden;
    position: absolute;
    text-align: center;
    transform: translateX(-50%);
    white-space: nowrap;
  }
  .keypad .num {
    color: black;
    animation: fade-in-num 0.1s linear;
    backface-visibility: hidden;
    display: inline-block;
    font-weight: 300;
    height: 30px;
    line-height: 30px;
    overflow: hidden;
    position: relative;
    text-align: center;
    transition: all 0.25s;
    width: 12px;
  }
  .keypad.dark .num{
    color: white;
  }
  .keypad .num.hidden {
    font-size: 0;
  }
  .keypad .num.hidden:after {
    opacity: 1;
    transform: translateX(-50%) translateY(-50%) scale(1);
  }
  .keypad .num.erased:after {
    opacity: 1;
    transform: translateX(-50%) translateY(-50%) scale(0.25);
  }
  .keypad .num:after {
    background-color: black;
    border-radius: 8px;
    content: '';
    height: 8px;
    left: 50%;
    opacity: 0;
    position: absolute;
    top: 50%;
    transform: translateX(-50%) translateY(-50%) scale(0.25);
    transition: all 0.25s;
    width: 8px;
  }
  .keypad .backspace {
    cursor: pointer;
    height: 40px;
    line-height: 40px;
    position: absolute;
    right: 0px;
    top: 0px;
    width: 30px;
  }
  .keypad .backspace .backspace-icon {
    background-color: black;
    color: white;
    border-bottom-right-radius: 2px;
    border-top-right-radius: 2px;
    display: inline-block;
    height: 14px;
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    user-select: none;
    width: 14px;
  }
  .keypad .backspace .backspace-icon:after {
    border: 0px solid transparent;
    border-bottom-width: 7px;
    border-right: 6px solid black;
    border-top-width: 7px;
    content: '';
    height: 0px;
    left: -6px;
    position: absolute;
    width: 0px;
  }
  .keypad .backspace .backspace-icon i {
    font-size: 0.75em;
    height: 14px;
    line-height: 14px;
    position: absolute;
    right: 0px;
    text-align: center;
    top: 0px;
    width: 14px;
  }
  .keypad .keypad-numbers {
    display: flex;
    flex-wrap: wrap;
    margin: auto;
    margin-top: 10px;
    position: relative;
    width: 90%;
  }
  .keypad .item-wrapper {
    cursor: pointer;
    display: inline-block;
    transition: all 0.25s;
    position: relative;
    vertical-align: top;
    transition: all 0.25s;
    width: 60px;
    margin: 0 5%;
  }
  .keypad .item-wrapper.zero {
    margin-left: 99px;
  }
  .keypad .item-wrapper .item {
    height: 60px;
    margin-top: 0;
    text-align: center;
    width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .keypad .item-wrapper .item i {
    color: black;
  }
  .keypad.dark .item-wrapper .item i {
    color: white;
  }
  .keypad .item-wrapper .item h1, .keypad .item-wrapper .item h2 {
    margin: 0px;
    text-align: center;
  }
  .keypad .item-wrapper .item h1 {
    color: black;
    font-size: 1.2em;
    font-weight: 300;
    height: 20px;
    line-height: 20px;
  }
  .keypad.dark .item-wrapper .item h1{
    color: white;
  }
  .keypad .item-wrapper .item h2 {
    color: rgba(0, 0, 0, 0.8);
    font-size: 0.6em;
    font-weight: 300;
    height: 10px;
    line-height: 10px;
  }
  .keypad .hover-dot:hover:before {
    opacity: 0.1;
    transform: translateX(-50%) translateY(-50%) scale(1);
  }
  .keypad .hover-dot:active:before {
    opacity: 0.2;
    transform: translateX(-50%) translateY(-50%) scale(1.2);
  }
  .keypad .hover-dot:before {
    background-color: black;
    border-radius: 30px;
    content: '';
    height: 60px;
    left: 50%;
    opacity: 0;
    position: absolute;
    top: 50%;
    transform: translateX(-50%) translateY(-50%) scale(0.3);
    transition: all 0.25s;
    width: 60px;
  }
  
  @keyframes fade-in-num {
    0% {
      opacity: 0;
      transform: translateY(50%) scale(0);
    }
    100% {
      opacity: 1;
      transform: translateY(0%) scale(1);
    }
  }

  /*=================clock===================*/
  .clock {
    width: 360px;
    height: 360px;
    border-radius: 50%;
    position: relative;
}

.marking {
    position: absolute;
    top: 178px;
    width: 358px;
    border: 1px solid #fff;
}

.marking-big {
    left: -8px;
    width: 374px;
}

.marking-12-6 {
    transform: rotate(90deg);
}
.marking-1-7 {
    transform: rotate(120deg);
}
.marking-2-8 {
    transform: rotate(150deg);
}
.marking-4-10 {
    transform: rotate(210deg);
}
.marking-5-11 {
    transform: rotate(240deg);
}

.clock_inner_face {
    position: absolute;
    top: 5%;
    left: 5%;
    width: 90%;
    height: 90%;
    /* background: url(../../assets/img/login/bg-login.jpg);
    background-position:right 10%;
    background-size: auto;
    background-repeat: no-repeat; */
    border-radius: 50%;
    z-index: 1;
    background: #1C524D;
}

.center_dot {
    position: absolute;
    top: 171px;
    left: 171px;
    width: 16px;
    height: 16px;
    background: #000);
    border-radius: 50%;
    z-index: 2;
}

.hour_hand {
    width: 139px;
    height: 3px;
    background: rgba(255, 255, 255, 0.75);
    position: absolute;
    top: 178px;
    left: 40px;
    transform: rotate(90deg);
    transform-origin: 100%;
    z-index: 3;
}

.min_hand {
    width: 167px;
    height: 2px;
    position: absolute;
    top: 178px;
    left: 12px;
    background: rgba(255, 255, 255, 0.75);
    transform: rotate(90deg);
    transform-origin: 100%;
    z-index: 3;
}

.sec_hand {
    width: 199px;
    height: 1px;
    position: absolute;
    top: 178.5px;
    left: 10px;
    background: rgba(255, 255, 255, 0.75);
    transform: rotate(90deg);
    transform-origin: 85%;
    z-index: 3;
}

.digital_clock {
    position: absolute;
    width: 100%;
    top: 60%;
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1.8rem;
    color: white;
    z-index: 4;
}

.day {
    width: 100%;
    position: absolute;
    color: white;
    top: 72%;
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1.5rem;
    z-index: 4;
}
#weatherWidget {
    background: none !important;
}
div#weatherWidgetInner {
    background: none !important;
}


/* forgot password */

.custbox .logo-penso img{
  filter: invert();
  height: 30px;
  margin-top: 10px;
}

.content-reset .row-forgot{
  height: calc(100vh - 46px);
}
.content-reset .footer{
  position: absolute;
  width: 100%;
}

@media screen and (max-width: 1180px) {
    .penso-login .navbar-header-fixed, .penso-login .media-body {
        display: none;
    }
    .penso-login .mainscreen.content-auth {
      height: 100%;
      min-height: inherit;
    }
    .forgot-link {
      margin-top: 80px !important;
      padding: 0!important;
    }
}