/* Progoti Bazar - Customer Registration Page Styles (Anti-Gravity V3.2) */
.pb-register-section {
    background-color: #f8fafc;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 15px;
    font-family: 'Hind Siliguri', 'Roboto', sans-serif;
}
.pb-register-card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    border: 1px solid #f1f5f9;
    overflow: hidden;
    width: 100%;
    max-width: 960px;
    display: flex;
    flex-wrap: wrap;
}
.pb-register-brand-panel {
    width: 42%;
    background: #0d5c3a;
    background: linear-gradient(145deg, #0d5c3a 0%, #083e27 100%);
    color: #ffffff;
    padding: 45px 35px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
}
.pb-brand-logo-box {
    background: #ffffff;
    width: 60px;
    height: 60px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.pb-brand-logo-box img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
.pb-brand-title {
    font-size: 26px;
    font-weight: 800;
    font-family: 'Oswald', sans-serif;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    color: #ffffff;
}
.pb-brand-tagline {
    font-size: 13.5px;
    color: #e2e8f0;
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: 30px;
}
.pb-feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}
.pb-feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 13.5px;
    font-weight: 600;
    color: #f1f5f9;
}
.pb-feature-list li .feat-icon {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.15);
    color: #fbbf24;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    flex-shrink: 0;
}
.pb-brand-support {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 18px;
    font-size: 12px;
    color: #cbd5e1;
}
.pb-brand-support a {
    color: #fde68a;
    font-weight: 700;
    text-decoration: none;
}
.pb-brand-support a:hover {
    text-decoration: underline;
}
.pb-register-form-panel {
    width: 58%;
    padding: 45px 40px;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.pb-form-header {
    margin-bottom: 24px;
}
.pb-form-header h3 {
    font-size: 22px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 4px;
    font-family: 'Oswald', sans-serif;
}
.pb-form-header p {
    font-size: 13px;
    color: #64748b;
    margin: 0;
    font-weight: 500;
}
.pb-input-group {
    margin-bottom: 16px;
}
.pb-input-group label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: #334155;
    margin-bottom: 6px;
}
.pb-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}
.pb-input-icon {
    position: absolute;
    left: 14px;
    color: #0d5c3a;
    font-size: 14px;
    pointer-events: none;
}
.pb-form-input {
    width: 100%;
    height: 44px;
    padding: 10px 14px 10px 40px;
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    border-radius: 6px;
    font-size: 13.5px;
    font-weight: 600;
    color: #1e293b;
    transition: all 0.2s ease;
    outline: none;
}
.pb-form-input:focus {
    border-color: #0d5c3a;
    box-shadow: 0 0 0 3px rgba(13, 92, 58, 0.12);
    background: #ffffff;
}
.pb-form-input::placeholder {
    color: #94a3b8;
    font-weight: 500;
    font-size: 13px;
}
textarea.pb-form-input {
    height: auto;
    min-height: 80px;
    padding: 10px 14px 10px 40px;
    resize: vertical;
}
.pb-pass-toggle {
    position: absolute;
    right: 14px;
    color: #64748b;
    cursor: pointer;
    font-size: 14px;
    transition: color 0.2s;
}
.pb-pass-toggle:hover {
    color: #0d5c3a;
}
.pb-account-type-box {
    background: #f8fafc;
    border: 1.5px solid #e2e8f0;
    border-radius: 8px;
    padding: 12px 14px;
    margin-bottom: 14px;
    transition: all 0.2s ease;
    cursor: pointer;
}
.pb-account-type-box:hover {
    border-color: #cbd5e1;
    background: #f1f5f9;
}
.pb-account-type-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    margin: 0;
    gap: 10px;
}
.pb-account-type-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #0d5c3a;
    cursor: pointer;
}
.pb-account-type-text {
    font-size: 13.5px;
    font-weight: 700;
    color: #1e293b;
}
.pb-doc-card {
    background: #f8fafc;
    border: 1.5px solid #e2e8f0;
    border-radius: 8px;
    padding: 18px;
    margin: 16px 0;
}
.pb-doc-title {
    font-size: 14px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.pb-doc-desc {
    font-size: 12px;
    color: #64748b;
    margin-bottom: 16px;
}
.pb-file-preview-box {
    margin-top: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.pb-file-preview-box img {
    max-width: 140px;
    max-height: 90px;
    border-radius: 6px;
    border: 1.5px solid #cbd5e1;
    object-fit: cover;
}
.pb-btn-clear-preview {
    background: #fee2e2;
    color: #dc2626;
    border: 1px solid #fca5a5;
    border-radius: 4px;
    padding: 4px 8px;
    font-size: 11.5px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
}
.pb-btn-clear-preview:hover {
    background: #fecaca;
}
.pb-btn-submit {
    width: 100%;
    height: 46px;
    background: #0d5c3a;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 14.5px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 2px 8px rgba(13, 92, 58, 0.25);
    margin-top: 10px;
}
.pb-btn-submit:hover {
    background: #09472c;
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(13, 92, 58, 0.35);
}
.pb-btn-submit:active {
    transform: translateY(1px);
}
.pb-login-prompt {
    text-align: center;
    margin-top: 22px;
    padding-top: 16px;
    border-top: 1px solid #f1f5f9;
    font-size: 13px;
    color: #64748b;
    font-weight: 600;
}
.pb-login-link {
    color: #0d5c3a;
    font-weight: 800;
    text-decoration: none;
    margin-left: 4px;
}
.pb-login-link:hover {
    color: #09472c;
    text-decoration: underline;
}
@media (max-width: 768px) {
    .pb-register-card {
        flex-direction: column;
        border-radius: 8px;
    }
    .pb-register-brand-panel {
        width: 100%;
        padding: 25px 20px;
    }
    .pb-brand-tagline {
        margin-bottom: 15px;
    }
    .pb-feature-list {
        margin-bottom: 15px;
    }
    .pb-register-form-panel {
        width: 100%;
        padding: 30px 20px;
    }
}
