.otp-input {
    width: 45px;
    height: 55px;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 600;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    transition: all 0.2s ease;
}

.otp-input:focus {
    border-color: #4f46e5;
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.2);
    outline: none;
}

.notification {
    transform: translateX(100%);
    animation: slideIn 0.3s forwards, fadeOut 0.3s 3.7s forwards;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    border-left-width: 0.25rem;
    font-weight: 500;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

@keyframes slideIn {
    0% {
        transform: translateX(100%);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fadeOut {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: translateX(100%);
    }
}

.direction-ltr {
    direction: ltr;
}

.auth-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.auth-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.auth-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10000;
}

.auth-modal-close:hover {
    transform: rotate(90deg);
}

.auth-modal-close svg {
    width: 24px;
    height: 24px;
    color: white;
}

body.auth-modal-open {
    overflow: hidden;
}

/* customization for theme */
.dark .auth-module path,
.dark .auth-module .fas {
    color: unset !important;
}

.dark .auth-module .bg-white {
    background-color: unset;
}

.dark .auth-module input,
.dark .auth-module textarea {
    background: unset;
}

:not(.dark) .auth-module input {
    background-color: unset !important;
}

.dark .auth-link,
.dark .auth-link path {
    color: #ff8f00;
    border: 1px solid #ff8f00;
}

.auth-link {
    border: 1px solid #8a8a8a;
    padding: 6px 20px;
}

.auth-link:hover {
    border: 1px solid #ff8f00;
    color: #ff8f00;
}