.lwp_scode_parent .otp-container {
    display: flex;
    justify-content: space-between;
    gap: 1vw; /* gap scales with viewport width */
    max-width: 90vw; /* container width relative to viewport */
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
}

.lwp_scode_parent .otp-container .otp-input {
    flex: 1 1 auto;
    min-width: 2.5rem;
    max-width: 6rem;
    width: auto;
    height: 3rem;
    font-size: 2rem;
    line-height: 3rem;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
    text-align: center;
    border: 0.15rem solid #ccc;
    border-radius: 1rem;
    background-color: #f9f9f9;
    transition: all 0.3s ease;
    outline: none;
    box-sizing: border-box;
padding:0 !important;

    -webkit-text-security: none;
    appearance: none;
    -webkit-appearance: none;
    background-clip: padding-box;
    color: #000;
}


.lwp_scode_parent .otp-container .otp-input:focus {
    border-color: #4CAF50;
    background-color: #e8f7e7;
    box-shadow: 0 0 1rem rgba(76, 175, 80, 0.3);
}

.lwp_scode_parent .otp-container .otp-input:valid {
    border-color: #2196F3;
    background-color: #e3f2fd;
}

.lwp_scode_parent .otp-container .otp-input:invalid {
    border-color: #f44336;
    background-color: #ffebee;
}

.lwp_scode_parent .otp-container .otp-input::placeholder {
    color: #aaa;
    font-size: 1.5rem;
}

.lwp_scode_parent .otp-container .otp-input:focus::placeholder {
    color: transparent;
}

.lwp_scode_parent {
    position: relative;
    height: auto; /* let it grow with content */
    padding: 1rem 0; /* some vertical spacing */
    box-sizing: border-box;
}

