@import url('https://fonts.googleapis.com/css2?family=Courier+Prime&display=swap');

.form-control:focus {
    background: transparent;
    border: none;
}

.verification-code-wrapper {
    width: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
}

.verification-area {
    width: 100%;
}

.verification-code {
    display: flex;
    position: relative;
    z-index: 1;
    height: 50px;
    width: 100%;
}

.verification-code::after {
    position: absolute;
    content: '';
    right: -37px;
    width: 35px;
    height: 50px;
    background-color: #fff;
    z-index: 2;
}

.verification-code input {
    position: absolute;
    width: calc(100% + 80px);
    background: transparent;
    font-size: 25px !important;
    font-weight: 800;
    left: 20px;
    letter-spacing: 51px;
    text-indent: 1px;
    border: none;
    z-index: 1;
    font-family: 'Courier Prime', monospace;
    color: #504c4c !important;
    height: 54px !important;
    line-height: 45px !important;
    padding: 10px 6px !important;
}

.verification-code input:focus {
    outline: none;
    cursor: pointer;
    box-shadow: none;
}

.boxes {
    position: absolute;
    top: 0;
    height: 100%;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    z-index: -1;
}

.verification-code span {
    height: 50px;
    width: calc((100% / 6) - 3px);
    background: #f1f1f1;
    border: solid 1px #f1f1f1;
    text-align: center;
    line-height: 50px;
    color: #cdc8c8
}

.verification-text {
    font-size: 1.2rem;
}


@media (min-width: 501px) {
    .common-login-main .card-body {
        padding: 30px 40px;
    }
}

@media (max-width: 500px) and (min-width: 320px) {
    .verification-code input {
        font-size: 22px !important;
        left: 10px;
        letter-spacing: 30px;
        height: 52px !important;
    }

    .verification-code-wrapper {
        width: 296px;
    }

    .verification-code::after {
        right: -13px;
        width: 12px;
    }
}