.wp-idv-registration-form-wrapper {
    max-width: 700px;
    margin: 40px auto;
    padding: 0 20px;
}

.wp-idv-message {
    padding: 15px 20px;
    border-radius: 6px;
    margin-bottom: 25px;
    font-size: 15px;
}

.wp-idv-success {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

.wp-idv-error {
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

.wp-idv-registration-form {
    background: #ffffff;
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.wp-idv-registration-form h2 {
    margin: 0 0 15px 0;
    font-size: 28px;
    color: #1e1e1e;
}

.wp-idv-form-description {
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.wp-idv-form-section {
    margin-bottom: 35px;
    padding-bottom: 25px;
    border-bottom: 1px solid #e5e5e5;
}

.wp-idv-form-section:last-of-type {
    border-bottom: none;
}

.wp-idv-form-section h3 {
    margin: 0 0 20px 0;
    font-size: 20px;
    color: #2c3338;
}

.wp-idv-form-row {
    margin-bottom: 20px;
}

.wp-idv-form-row label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3338;
    font-size: 14px;
}

.required {
    color: #d63638;
}

.wp-idv-form-row input[type="text"],
.wp-idv-form-row input[type="email"],
.wp-idv-form-row input[type="password"] {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #dcdcde;
    border-radius: 4px;
    font-size: 15px;
    transition: border-color 0.2s;
}

.wp-idv-form-row input:focus {
    outline: none;
    border-color: #2271b1;
    box-shadow: 0 0 0 1px #2271b1;
}

.wp-idv-form-row small {
    display: block;
    margin-top: 6px;
    color: #757575;
    font-size: 13px;
}

/* File upload styling */
.wp-idv-document-section {
    background: #f9f9f9;
    padding: 25px;
    border-radius: 6px;
    border: 2px dashed #dcdcde;
}

.wp-idv-document-info {
    background: #fff;
    padding: 15px;
    border-radius: 4px;
    border-left: 4px solid #2271b1;
    margin-bottom: 20px;
    font-size: 14px;
    color: #2c3338;
    line-height: 1.6;
}

.wp-idv-form-row input[type="file"] {
    display: none;
}

.wp-idv-file-label {
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
}

.wp-idv-file-button {
    background: #2271b1;
    color: #fff;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 600;
    transition: background 0.2s;
    display: inline-block;
}

.wp-idv-file-button:hover {
    background: #135e96;
}

.wp-idv-file-name {
    color: #757575;
    font-size: 14px;
}

.wp-idv-privacy-notice {
    display: flex;
    gap: 12px;
    background: #fff3cd;
    padding: 15px;
    border-radius: 4px;
    margin-top: 20px;
    border: 1px solid #ffeaa7;
    font-size: 13px;
    color: #856404;
    line-height: 1.5;
}

.wp-idv-privacy-notice svg {
    flex-shrink: 0;
    margin-top: 2px;
}

/* Checkbox styling */
.wp-idv-terms {
    margin-top: 30px;
}

.wp-idv-checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
}

.wp-idv-checkbox-label input[type="checkbox"] {
    margin-top: 3px;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.wp-idv-checkbox-label span {
    flex: 1;
    font-size: 14px;
    line-height: 1.5;
    color: #2c3338;
}

/* Submit button */
.wp-idv-form-actions {
    margin-top: 30px;
}

.wp-idv-submit-btn {
    background: #2271b1;
    color: #fff;
    border: none;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.2s;
}

.wp-idv-submit-btn:hover {
    background: #135e96;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(34, 113, 177, 0.3);
}

.wp-idv-submit-btn svg {
    transition: transform 0.2s;
}

.wp-idv-submit-btn:hover svg {
    transform: translateX(3px);
}

/* Form footer */
.wp-idv-form-footer {
    margin-top: 30px;
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #e5e5e5;
}

.wp-idv-form-footer p {
    margin: 0;
    color: #757575;
    font-size: 14px;
}

.wp-idv-form-footer a {
    color: #2271b1;
    text-decoration: none;
    font-weight: 600;
}

.wp-idv-form-footer a:hover {
    text-decoration: underline;
}

/* Responsive design */
@media (max-width: 768px) {
    .wp-idv-registration-form {
        padding: 30px 20px;
    }
    
    .wp-idv-registration-form h2 {
        font-size: 24px;
    }
    
    .wp-idv-file-label {
        flex-direction: column;
        align-items: flex-start;
    }
}

