p,
label {
    font-family: 'Prompt';
    color: #5F5F5F;
}


.loader {
    margin: auto;
    border: 20px solid #EAF0F6;
    border-radius: 50%;
    border-top: 20px solid #FF7A59;
    width: 200px;
    height: 200px;
    animation: spinner 4s linear infinite;
}

@keyframes spinner {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.pin-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.pin-input {
    font-family: monospace;
    font-size: 2.5rem;
    border: none;
    outline: none;
    padding: 0;
    width: calc(1.6ch * 6);
    background: repeating-linear-gradient(90deg, dimgrey 0, dimgrey 1ch, transparent 0, transparent 1.6ch) 0 100%/100% 2px no-repeat;
    color: dimgrey;
    letter-spacing: .6ch;
    -webkit-text-security: disc;
    -moz-text-security: disc;
}



.box-pin-container {
    position: relative;
    font-family: monospace;
    font-size: 2.5rem;
    height: 2ch;
    display: flex;
    align-items: center;
}

.box-pin-input {
    font-family: inherit;
    font-size: inherit;
    border: none;
    outline: none;
    padding: 0;
    letter-spacing: 1ch;
    -webkit-text-security: disc;
    -moz-text-security: disc;
    color: gray;
    padding-left: .25ch;
    height: 1.5ch;
    margin-bottom: .05ch;
    background-color: #F3F4F4;
    overflow-y: hidden;
    overflow-x: hidden;
    background: transparent;
    width: 8ch;
}

.cell {
    position: absolute;
    top: 0;
    bottom: 0;
    outline: 2px solid lightgray;
    width: 1.5ch;
    z-index: -1;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.lds-facebook {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
}

.lds-facebook div {
    display: inline-block;
    position: absolute;
    left: 8px;
    width: 16px;
    background: #f2af50;
    animation: lds-facebook 1.2s cubic-bezier(0, 0.5, 0.5, 1) infinite;
}

.lds-facebook div:nth-child(1) {
    left: 8px;
    animation-delay: -0.24s;
}

.lds-facebook div:nth-child(2) {
    left: 32px;
    animation-delay: -0.12s;
}

.lds-facebook div:nth-child(3) {
    left: 56px;
    animation-delay: 0;
}

@keyframes lds-facebook {
    0% {
        top: 8px;
        height: 64px;
    }

    50%,
    100% {
        top: 24px;
        height: 32px;
    }
}

body,html {
    overflow-x: hidden;
    height: auto;
    width: auto; 
    /* background: rgb(0, 146, 255); */
    /*background: linear-gradient(138deg, rgba(0, 146, 255, 1) 0%, rgba(209, 0, 201, 1) 100%);*/
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-size: cover;
    gap: 3rem;
    bottom: 0;
}