.verify-email-box
{
    margin: 24px 0;

    padding: 16px;

    border-radius: 14px;

    background: #f8f9fc;

    border: 1px solid #e4e8f2;

    text-align: center;
}

.verify-email-title
{
    font-size: 13px;

    color: #6b7280;

    margin-bottom: 6px;
}

.verify-email-address
{
    font-size: 16px;

    font-weight: 600;

    color: #111827;
}

.otp-label
{
    display: block;

    margin-bottom: 12px;

    font-weight: 600;
}

.otp-container
{
    display: flex;

    justify-content: space-between;

    gap: 10px;

    margin-bottom: 22px;
}

.otp-box
{
    width: 50px;

    height: 58px;

    border-radius: 12px;

    border: 2px solid #d7dbe5;

    font-size: 24px;

    text-align: center;

    font-weight: 700;

    outline: none;

    transition: .25s;
}

.otp-box:focus
{
    border-color: #d63384;

    box-shadow: 0 0 0 4px rgba(214,51,132,.15);
}

.otp-resend
{
    display: flex;

    justify-content: space-between;

    align-items: center;

    margin-bottom: 28px;

    font-size: 14px;
}

.otp-link
{
    background: none;

    border: none;

    color: #8b2dd5;

    font-weight: 600;

    cursor: pointer;
}

.otp-link:disabled
{
    color: #9ca3af;
    cursor: not-allowed;
    opacity: 0.6;
}

