.pin-box {
    /*background-color: rgba(200, 150, 250, 0.8);*/
    /*border: 2px solid rgba(100, 50, 150, 0.8);*/
    border-radius: 8px;
    width: 240px;
    height: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 10px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  
.pin-input {
    font-size: 24px;
    width: 50px;
    height: 50px;
    text-align: center;
    border: none;
    border-bottom: 2px solid rgba(100, 50, 150, 0.8);
    outline: none;
    background: transparent;
    margin: 0 5px;
    padding: 0;
	color: #fff;
}
  
.pin-input:focus {
    border-bottom: 2px solid rgba(255, 255, 255, 0.8);
}

body {
	font-family: 'Roboto', sans-serif;
	background-repeat: no-repeat;
    background-size: cover;
	margin: 0;
	padding: 0;
}

/* Laptop atau Layar Lebar */
@media only screen and (min-width: 1024px) {
  body {
    background-image: url("../images/logo/bgl.png");
    /* Tambahan styling lainnya */
  }
}

/* Smartphone atau Layar Kecil */
@media only screen and (max-width: 768px) {
  body {
    background-image: url("../images/logo/bgp.png");
    /* Tambahan styling lainnya */
  }
}