body { 
    background-image: url('/img/bg.svg'); background-size: cover;}
    .header {
        position: fixed;
        top: 0;
        width: 100%;
        z-index: 999;
    }
    .ps-card{background-color: #fafcff;}
    .header .header__top {
        background-color: rgb(30 27 27) !important;
        padding: 15px 0px 6px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.15);
        text-align: center;
    }
    .header__top h4{
        text-transform: uppercase;
        color: aliceblue;
        font-size: 20px;
    }
    .top-10 {
        padding: 16px;
        padding-top: 115px;
        margin-bottom: 85px;
        max-width: 450px;
    }
    
    .icon-chevron-down{
        position: absolute;
        top: 16px;
        right: 10px;
    }
    .running-text {
        position: fixed;
        bottom: 0;
        width: 100%;
        background: rgb(30 27 27) !important;
        color: #fff;
        padding: 10px 0;
        font-size: 1.8rem;
        text-transform: uppercase;
        overflow: hidden;
        z-index: 1000;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .running-text p{
        margin-top: -4px;
        margin-bottom: auto;
    }
    .running-text span {
      display: inline-block;
      white-space: nowrap;
      animation: marquee 20s linear infinite;
    }

    @keyframes marquee {
      0% { transform: translateX(100%); }
      100% { transform: translateX(-100%); }
    }
    .input-group .left{
        width: 10% !important;
    }
    .input-group .middle{
      width: 40% !important;
      margin-left: 10px !important;
    }
    .input-group .right{
      margin-left: 10px !important;
      width: 15% !important;
    }
    .form-control{height: 38px;}

    #indukName{
  font-weight: 800 !important;
}

.keyboard-container {
  border: 1px solid #ccc;
  padding: 10px;
  background: #27282887;
  border-radius: 8px;
  position: absolute;
  z-index: 1000;
}
.keyboard {
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  gap: 2px;
}
.key {
  padding: 5px 10px;
  font-size: 16px;
  border: 2px solid #ddd;
  border-radius: 6px;
  background: #000000;
  color: aliceblue;
  cursor: pointer;
  user-select: none;
}
.key.special {
  grid-column: span 2;
  background: #000000;
  color: aliceblue;
}
.key:hover {
  background: #ccc;
  color:#000000;
}

@media (max-width: 576px) { 
	.keyboard-container, .img-qr{
		display:none !important;
	}
	.top-10 {
    padding-top: 150px;
	}
  .header__top h4 {
    font-size: 16px;
    padding: 1px 10px;
    margin-top: 30px;
  }
}