.js-opt-code-wrap {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.js-opt-code-header {
    text-align: center;
    width: 100%;
}

.js-opt-code-container {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin: 20px 0;
    max-width: 300px;
}

.js-opt-code-input {
    width: 60px;
    height: 60px;
    text-align: center;
    font-size: 24px;
    border: 2px solid #ddd;
    border-radius: 10px;
    transition: all 0.3s ease;
    font-weight: bold;
}

.js-opt-code-input:focus {
    transform: scale(1.05);
}

.js-opt-code-input.filled {
    border-color: #28a745;
    background-color: rgba(40, 167, 69, 0.05);
}

.js-opt-code-input.error {
    border-color: #dc3545;
    background-color: rgba(220, 53, 69, 0.05);
    animation: shake 0.5s ease-in-out;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

.js-opt-code-hint {
    text-align: center;
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 20px;
}

.js-opt-code-error {
    color: #dc3545;
    font-size: 14px;
    text-align: center;
    margin-bottom: 20px;
    display: none;
}

.js-resend-code-btn:disabled {
    color: #6c757d;
    cursor: not-allowed;
    /*text-decoration: none;*/
}

.js-opt-code-back-btn {
    background: none;
    border: 1px solid #ddd;
    color: #333;
    cursor: pointer;
    font-size: 14px;
    padding: 10px 20px;
    border-radius: 5px;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.js-opt-code-back-btn:hover {
    background: #f8f9fa;
    border-color: #007bff;
}

.auth-item-form {
    position: relative;
    transition: all 0.3s ease;
}

.auth-item-form.otp-active .auth-item-form-main {
    opacity: 0;
    pointer-events: none;
    position: absolute;
    width: 0;
    height: 0;
}

.modal-search {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 22px;
    background-color: #fff;
}
.modal-search input:not([type=checkbox]):not([type=radio]):not([type=file]):not([type=range]) {
    width: 80%;
}