/* Vendor password reset — narrow card layout (matches storefront reference) */

.vpr-wrap {
    max-width: 480px;
    margin: 0 auto;
    padding: 2.5rem 1rem 3.5rem;
}

.vpr-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 0.5rem;
    letter-spacing: -0.02em;
}

.vpr-desc {
    font-size: 0.9375rem;
    color: #6b7280;
    margin: 0 0 1.5rem;
    line-height: 1.55;
}

.vpr-alert {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 14px 16px;
    border-radius: 10px;
    margin-bottom: 1.25rem;
    font-size: 0.875rem;
    line-height: 1.5;
    background: #ecfdf5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.vpr-alert i {
    margin-top: 2px;
    flex-shrink: 0;
    color: #059669;
}

.vpr-alert-error {
    background: #fef2f2;
    color: #991b1b;
    border-color: #fecaca;
}

.vpr-alert-error i {
    color: #dc2626;
}

.vpr-alert-warn {
    background: #fffbeb;
    color: #92400e;
    border-color: #fcd34d;
}

.vpr-alert-warn i {
    color: #d97706;
}

.vpr-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.vpr-label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.35rem;
}

.vpr-input {
    width: 100%;
    padding: 0.65rem 0.85rem;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    color: #1a1a2e;
    background: #fff;
    transition: border-color 0.15s, box-shadow 0.15s;
}

.vpr-input:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.12);
}

.vpr-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0.7rem 1rem;
    margin-top: 0.25rem;
    border: none;
    border-radius: 8px;
    font-size: 0.9375rem;
    font-weight: 600;
    font-family: inherit;
    color: #fff;
    background: linear-gradient(135deg, #007bff, #0056b3);
    cursor: pointer;
    transition: transform 0.15s, box-shadow 0.15s;
    box-shadow: 0 2px 8px rgba(0, 123, 255, 0.25);
}

.vpr-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(0, 123, 255, 0.3);
}

.vpr-foot {
    text-align: center;
    margin-top: 1.25rem;
    margin-bottom: 0;
    font-size: 0.875rem;
}

.vpr-foot a {
    color: #007bff;
    text-decoration: none;
    font-weight: 500;
}

.vpr-foot a:hover {
    text-decoration: underline;
}
