.reset-code-caption{
    font-size: var(--font-size-xl);
    text-align: center;
    margin: var(--space-md) 0;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: 0;
    vertical-align: middle;

}

.code-inputs{
    display: flex; gap: 15px;
    margin: 0;
    justify-content: center;
}

.reset-code-hint{
    font-size: var(--font-size-sm);
    font-weight: 400;;
    line-height: 1.4;
    letter-spacing: 0;
    text-align: center;
    vertical-align: middle;
    color: var(--text-primary);
    margin-bottom: var(--space-xl);
    margin-top: var(--space-xs);
}

.code-input-wrap{
    width:60px; height:60px;
    display:grid; place-items:center;
    border-radius:15px;
    transition: box-shadow .15s ease, border-color .15s ease;
    position: relative;
}

.code-input-wrap:before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: transparent;
    border: 3px solid #2FBED2;
    filter: blur(2px);
    pointer-events: none;
    z-index: 0;
    mix-blend-mode: normal;
}

.code-input {
    width:100%; height:100%; text-align: center; font-size: var(--font-size-lg);;
    outline: none;
    color: var(--text-primary);
    background-color: var(--bg-tertiary);
    border: 0;
    border-radius: 15px;
}

.code-input:focus{
    border-color: var( --accent-primary);
}

.resend-code {
    text-align: center;
}

.resend-code a {
    color: var(--accent-primary);
    text-decoration: none;
    font-size: var(--font-size-sm);
    position: relative;

    font-weight: 500;

    line-height: 1.4;
    letter-spacing: 0;
    text-align: center;
    vertical-align: middle;
    text-decoration: none;
    text-decoration-style: solid;
    text-decoration-offset: 0;
    text-decoration-thickness: 0;
}

.resend-code a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--accent-primary);
    transition: width var(--transition-normal);
}

.resend-code a:hover::after {
    width: 100%;
}

.btn-animation{
    transition: all var(--transition-normal);
}

.btn-animation.is-disabled{
    opacity: .6;
    pointer-events: none;
    cursor: not-allowed;
}

.btn-animation.is-enabled{
    opacity: 1;
    cursor: pointer;
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--bg-primary-transparent);
    z-index: 1001;
    display: none;
    justify-content: center;
    align-items: center;
}

.modal-title {
    text-align: center;
    margin-bottom: var(--space-lg);
    background: linear-gradient(90deg, var(--text-primary) 0%, var(--accent-primary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

@media (max-width: 768px) {
    .code-input-wrap{
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 455px) {
    .reset-code-caption{
        margin: 0 0 var(--space-sm);
    }

    .code-inputs{
        gap: 10px;
    }

    .code-input-wrap{
        width: 35px;
        height: 35px;
        border-radius: 10px;
    }

    .code-input{
        border-radius: 10px;
        font-size: var(--font-size-md);
    }

    .reset-code-hint{
        font-size: var(--font-size-xs);
    }
}

@media (max-width: 350px) {
    .reset-title-text{
        font-size: var(--font-size-md);
    }
}

@media (max-width: 320px) {
    .reset-code-caption{
        font-size: var(--font-size-xs);
    }

    .code-input-wrap{
        width: 30px;
        height: 30px;
    }

    .code-input{
        font-size: var(--font-size-sm);
    }

    .reset-code-hint{
        font-size: var(--font-size-xxs);
        margin: var(--space-xs) 0 var(--space-sm);
    }

    .reset-email-hint{
        font-size: var(--font-size-xxs);
    }
}







