.otp {
    border: 2px solid rgb(26 103 255);
    padding: 20px 20px 15px 20px;
    margin-top: 25px;
    box-shadow: 0 3px 36px rgb(0 0 0 / 16%);
    animation: pulse-black 2s infinite;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-content: center;
    align-items: flex-start;
}
.otp .comment {
    font-style: italic;
    text-transform: uppercase;
    font-weight: bold;
    font-weight: 900;
    color: #000;
    display: block;
}
.otp .price {
    font-size: 24px;
    font-family: 'Nexa';
    font-weight: 900;
    color: #1a67ff;
}
@keyframes pulse-black {
    0% {
        box-shadow: 0 0 0 0 rgba(26, 103, 255, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(26, 103, 255, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(26, 103, 255, 0);
    }
}

