﻿.otp-wrapper {
    text-align: center;
    margin-top: 60px;
}

.otp-container {
    display: inline-block;
    direction: ltr;
}
.otp-container .otp-number-input {
    width: 10%;
    height: 33px;
    margin: 0 2px;
    border: none;
    border-bottom: 2px solid var(--BackgroundColorSecound);
    padding: 0;
    color: rgba(0, 0, 0, 0.7);
    font-size: 30px;
    box-shadow: none;
    text-align: center;
    font-weight: 600;
    border-radius: 0;
    outline: 0;
    transition: border 0.3s ease;
}
.otp-container .otp-number-input:focus {
    border-color: rgba(0, 0, 0, 0.5);
}
.otp-container .otp-number-input.otp-filled-active {
    border-color: #F6BC13;
}
 
 