/* Basic Reset & Body Styling */
body {
font-family: 'Inter', sans-serif; /* Using brand font */
line-height: 1.6;
color: #333;
margin: 0;
padding: 0;
background-color: #f8f8f8; /* Light background */
}
/* Main Container */
.container {
max-width: 1200px;
margin: 20px auto;
background-color: #fff;
padding: 25px;
border-radius: 12px; /* Rounded corners */
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); /* Subtle shadow */
display: flex;
flex-wrap: wrap;
}
/* Table of Contents (TOC) Sidebar */
.toc-sidebar {
flex: 0 0 280px;
margin-right: 30px;
padding: 20px 0;
position: sticky;
top: 100px; /* Adjusted to typically clear header */
height: fit-content;
background-color: #f5f5f1; /* Brand light background */
border-radius: 12px; /* Rounded corners */
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
overflow-y: auto;
max-height: calc(100vh - 120px); /* Adjusted max height */
}
.toc-sidebar h3 {
color: #000; /* Brand black */
margin-top: 0;
padding: 0 20px;
font-size: 1.3em;
border-bottom: 1px solid #dcdcdc;
padding-bottom: 10px;
margin-bottom: 15px;
}
.toc-sidebar ul {
list-style: none;
padding: 0 20px;
margin: 0;
}
.toc-sidebar ul li {
margin-bottom: 10px;
}
.toc-sidebar ul li a {
text-decoration: none;
color: #333;
font-weight: 500;
display: block;
padding: 8px 10px;
border-radius: 8px; /* Rounded corners */
transition: background-color 0.3s ease, color 0.3s ease;
}
.toc-sidebar ul li a:hover,
.toc-sidebar ul li a.active {
background-color: #FBC462; /* Brand yellow/gold */
color: #000; /* Brand black */
}
/* Main Content Area */
.main-content {
flex: 1;
min-width: 0;
}
.main-content h1 {
color: #000; /* Brand black */
font-size: 2.8em; /* Consistent with previous pages */
margin-bottom: 20px;
text-align: center;
border-bottom: 2px solid #FBC462; /* Brand yellow/gold underline */
padding-bottom: 10px;
}
.main-content h2 {
color: #333; /* Dark grey for subheadings */
font-size: 2.2em; /* Consistent with previous pages */
margin-top: 60px;
margin-bottom: 25px;
border-left: 4px solid #FBC462; /* Brand yellow/gold left border */
padding-left: 15px;
}
.main-content h3 {
color: #444; /* Slightly lighter grey */
font-size: 1.6em; /* Consistent with previous pages */
margin-top: 30px;
margin-bottom: 15px;
}
.main-content p {
margin-bottom: 15px;
text-align: justify;
}
.main-content ul {
list-style: disc;
margin-left: 25px;
margin-bottom: 15px;
}
.main-content ol {
list-style: decimal;
margin-left: 25px;
margin-bottom: 15px;
}
.main-content a {
color: #000; /* Brand black for links */
text-decoration: underline;
transition: color 0.3s ease;
}
.main-content a:hover {
color: #FBC462; /* Brand yellow/gold on hover */
text-decoration: none;
}
/* Info Box Styling */
.info-box {
background-color: #FFF8E1; /* Lighter shade of brand yellow */
border-left: 5px solid #FBC462; /* Brand yellow/gold border */
padding: 15px 20px;
margin: 20px 0;
border-radius: 10px; /* Rounded corners */
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.info-box p {
margin: 0;
color: #333; /* Dark text */
}
/* Checklist Specific Styling */
.checklist-section ul {
list-style: none; /* Remove default bullets */
padding: 0;
}
.checklist-section ul li {
background-color: #f9f9f9;
border: 1px solid #eee;
padding: 12px 15px;
margin-bottom: 8px;
border-radius: 8px;
display: flex;
align-items: center;
box-shadow: 0 1px 3px rgba(0,0,0,0.03);
}
.checklist-section ul li::before {
content: '✅'; /* Checkmark emoji */
margin-right: 10px;
font-size: 1.2em;
}
/* Responsive Carousel (text-based) */
.carousel-container {
margin-top: 40px;
overflow: hidden;
padding: 40px 30px; /* Consistent padding with other carousels */
background-color: #f5f5f1; /* Brand light background */
border-radius: 12px; /* Rounded corners */
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
position: relative; /* For navigation buttons */
}
.carousel-title {
text-align: center;
color: #000; /* Brand black */
margin-bottom: 25px;
font-size: 1.8em;
font-weight: 700;
}
.carousel-wrapper {
display: flex;
justify-content: flex-start;
overflow-x: auto;
-webkit-overflow-scrolling: touch;
padding: 0 10px;
scroll-snap-type: x mandatory;
gap: 30px; /* Spacing between items */
}
.carousel-item {
flex: 0 0 auto;
width: 300px;
background-color: #fff;
border: 1px solid #ddd;
border-radius: 8px; /* Rounded corners */
padding: 20px;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08);
scroll-snap-align: start;
transition: transform 0.3s ease;
display: flex; /* For consistent card height */
flex-direction: column;
}
.carousel-item:hover {
transform: translateY(-5px);
}
.carousel-item h4 {
color: #000; /* Brand black */
margin-top: 0;
font-size: 1.2em;
min-height: 50px;
}
.carousel-item p {
font-size: 0.9em;
color: #555;
min-height: 80px;
flex-grow: 1; /* Allows description to take space */
}
.carousel-item a {
display: inline-block;
background-color: #000; /* Brand black button */
color: #fff;
padding: 8px 15px;
border-radius: 8px; /* Rounded corners */
text-decoration: none;
margin-top: 10px;
transition: background-color 0.3s ease;
font-weight: 600;
}
.carousel-item a:hover {
background-color: #FBC462; /* Brand yellow/gold on hover */
color: #000; /* Brand black on hover */
}
.carousel-button {
position: absolute;
top: 50%;
transform: translateY(-50%);
background-color: rgba(0, 0, 0, 0.6);
color: #fff;
border: none;
padding: 10px 15px;
cursor: pointer;
font-size: 1.5em;
border-radius: 50%;
z-index: 10;
transition: background-color 0.3s ease;
}
.carousel-button:hover {
background-color: rgba(0, 0, 0, 0.8);
}
.carousel-button.left {
left: 10px;
}
.carousel-button.right {
right: 10px;
}
/* Responsive Adjustments */
@media (max-width: 992px) {
.container {
flex-direction: column;
margin: 15px auto;
padding: 15px;
}
.toc-sidebar {
position: static;
width: 100%;
margin-right: 0;
margin-bottom: 25px;
max-height: none;
}
.toc-sidebar h3 {
text-align: center;
padding-bottom: 5px;
margin-bottom: 10px;
}
.toc-sidebar ul {
display: flex;
flex-wrap: wrap;
justify-content: center;
padding: 0 10px;
}
.toc-sidebar ul li {
margin: 5px 8px;
}
.toc-sidebar ul li a {
padding: 6px 12px;
font-size: 0.9em;
text-align: center;
}
.main-content {
width: 100%;
}
.main-content h1 {
font-size: 2em;
}
.main-content h2 {
font-size: 1.6em;
}
.main-content h3 {
font-size: 1.3em;
}
.carousel-item {
width: 280px; /* Adjust width for items on tablets */
margin: 0 10px;
}
}
@media (max-width: 768px) {
.container {
margin: 10px;
padding: 10px;
}
.main-content h1 {
font-size: 1.8em;
}
.main-content h2 {
font-size: 1.4em;
}
.carousel-wrapper {
flex-wrap: nowrap; /* Keep it a carousel, but allow more overflow */
overflow-x: auto; /* Enable horizontal scrolling if needed */
scroll-snap-type: x mandatory; /* Snap to items */
}
.carousel-item {
min-width: 85%; /* Make cards wider on small mobile screens */
scroll-snap-align: start; /* Snap items to the start of the scroll area */
}
.carousel-button {
display: none; /* Hide navigation buttons on smaller screens */
}
}
@media (max-width: 480px) {
.toc-sidebar ul li a {
font-size: 0.85em;
padding: 5px 10px;
}
.carousel-item {
min-width: 95%; /* Even wider on very small screens */
}
}
UK Spouse Visa Document Checklist (2025): Your Comprehensive Guide
Applying for a UK Spouse Visa is a detailed process, and gathering the correct documents is arguably the most critical step. Even a small omission or error can lead to significant delays or, worse, a refusal of your application. The Home Office relies entirely on the evidence you provide to assess if you meet all eligibility criteria.
This comprehensive 2025 guide provides a meticulous checklist of all the essential documents you will need for your UK Spouse Visa application (initial or extension). We'll break down the requirements by category, offer crucial tips for preparing your documents, and highlight common mistakes to avoid. Our goal is to ensure you submit a complete and robust application, paving the way for a smooth journey to join or remain with your partner in the UK.
For an overview of all Spouse Visa requirements, visit our main UK Spouse Visa Requirements page.
Who Needs This Document Checklist?
This checklist is essential for anyone applying for a UK Spouse Visa, whether you are:
- Applying for the initial Spouse Visa from outside the UK.
- Applying for your first extension of the Spouse Visa from within the UK (after 2.5 years). See our How to Extend Your UK Spouse Visa guide for more details.
The core document requirements are largely similar for both initial and extension applications, though the period of evidence (e.g., cohabitation) will differ.
General Documents for Both Applicant & Sponsor
These are fundamental documents required from both the applicant (the non-UK partner) and the sponsor (the UK partner).
- Current Passports: Valid passports for both the applicant and the UK sponsor. Include all pages, especially those with stamps or visas.
- Previous Passports: Any previous passports that contain UK visa stamps or show your immigration history.
- Biometric Residence Permit (BRP): If the applicant already has a BRP from a previous UK visa.
- Marriage Certificate / Civil Partnership Certificate: The official document proving your legal relationship.
- Previous Divorce Certificates / Death Certificates (if applicable): If either partner was previously married/in a civil partnership, provide evidence of dissolution or death.
- Application Form: The completed online application form (e.g., Form FLR(M) for in-country extension or online form for initial application).
- Payment Confirmation: Proof that the visa application fee and Immigration Health Surcharge (IHS) have been paid.
Evidence of Genuine and Subsisting Relationship
This is critical. The Home Office needs to be convinced your relationship is genuine and continuing. You need to provide evidence of cohabitation over the period you claim to have lived together (e.g., 2 years for initial visa, 2.5 years for extension).
Key Documents:
- Joint Bank Statements: Statements from a joint bank account.
- Joint Utility Bills: Gas, electricity, water, or internet bills addressed to both of you.
- Council Tax Bills: Addressed to both of you.
- Tenancy Agreements / Mortgage Statements: In joint names.
- Official Correspondence: Letters from government bodies, doctors, banks, etc., addressed to each of you individually at the same address, showing you both reside there. Aim for 6-12 pieces of correspondence spread evenly over the period.
- Photos (Optional but Recommended): A small selection of photos together (e.g., with family, on holidays) can support your claim, but should not be the primary evidence.
- Evidence of Communication (if previously living apart): If you were not living together before the application (e.g., for an initial visa), provide evidence of communication (e.g., call logs, chat history, travel tickets for visits).
Financial Requirement Documents
This is where many applications falter. You must meet the minimum income threshold (£18,600 gross per annum, increasing for dependents) through acceptable sources. The evidence required depends on how the financial requirement is met.
Common Categories & Documents:
- For Employed Income (Category A or B):
- Sponsor's (and/or applicant's, if applicable) payslips for the last 6 months (or 12 months for Category B).
- Corresponding bank statements showing salary payments for the same period.
- Letter from employer(s) confirming employment, gross annual salary, start date, and employment type (permanent, fixed-term).
- P60 (if applicable and available).
- Employment contract.
- For Self-Employment Income (Category F or G):
- Company Tax Return (CT600) and accounts.
- Certificate of VAT registration (if applicable).
- Evidence of registration with Companies House (if applicable).
- Bank statements for the business and personal accounts.
- Letter from an accountant (if applicable).
- For Cash Savings (Category D):
- Bank statements showing savings of over £16,000 (must have been held for at least 6 months).
- Letter from financial institution confirming balance.
- Evidence of source of funds if large deposits were made.
- For Pension Income (Category E):
- Official pension statements or letters confirming pension entitlement and payments.
- Bank statements showing pension payments.
Important: The financial requirement rules are highly complex. It is strongly recommended to refer to the official Home Office guidance (Appendix FM 1.7) or seek professional advice. Our UK Spouse Visa Requirements page provides an overview.
English Language Requirement Documents
The applicant must demonstrate English proficiency at CEFR A1 (initial visa) or B1 (extension) in Speaking and Listening, unless exempt.
- Secure English Language Test (SELT) Certificate:
- Degree Certificate (if applicable for exemption):
- Bachelor's, Master's, or PhD degree certificate taught in English from a UK university.
- Or, an overseas degree certificate with an ECCTIS (formerly UK NARIC) statement confirming its equivalence to a UK degree and that it was taught in English.
- Passport from Majority English-Speaking Country (if applicable for exemption): Copy of passport showing nationality of an exempt country.
Accommodation Documents
Proof that you have adequate accommodation for yourself, your partner, and any dependents without overcrowding.
- Tenancy Agreement / Mortgage Statement: Showing your current address.
- Council Tax Bill: For your current address.
- Utility Bills: (e.g., gas, electricity, water) for your current address.
- Property Inspection Report (if applicable): Recommended if the property is shared, or if there are concerns about overcrowding or suitability.
- Letter from Landlord / Homeowner: If you are not the homeowner or primary tenant, a letter confirming your residence and permission to live there.
Documents for Dependent Children (if applicable)
If you are including dependent children in your application, you will need additional documents for them.
- Child's Passport(s): Valid passport for each dependent child.
- Child's Birth Certificate(s): Showing parentage.
- Proof of Parental Responsibility: If not evident from birth certificate (e.g., adoption papers, court orders).
- Consent Letter: If one parent is not applying with the child, a letter of consent from that parent.
- Evidence of Relationship to Sponsor: If the child is not the biological child of the UK sponsor, evidence of their relationship (e.g., step-child, adopted child).
Crucial Document Preparation Tips
How you prepare your documents is almost as important as having them. Meticulous organization can prevent delays and refusals.
- Scan Clearly: Ensure all scanned documents are clear, legible, and in the correct format (usually PDF).
- Organize Logically: Group documents by category (e.g., financial, relationship, English language). Create clear file names.
- Provide Translations: Any document not in English or Welsh must be accompanied by a certified translation. The translation must be from a professional translator and include their credentials.
- Follow UKVI Guidelines: Adhere strictly to any specific instructions from UKVI regarding document size, format, and naming conventions when uploading.
- Keep Copies: Always keep a complete set of copies of all documents you submit for your own records.
- Use a Checklist: Go through this checklist (and the official UKVI guidance) multiple times. Tick off each document as you gather and prepare it.
Common Document-Related Mistakes Leading to Refusal
Many Spouse Visa refusals are due to avoidable document errors. Be extra careful with these:
- Missing Core Documents: Forgetting passports, marriage certificates, or key financial evidence.
- Insufficient Cohabitation Evidence: Not providing enough joint correspondence or not spreading it evenly over the required period.
- Financial Evidence Gaps: Missing payslips, bank statements that don't match payslips, or not covering the full required period.
- Uncertified Translations: Submitting non-English documents without proper certified translations.
- Outdated Documents: Using documents that are no longer valid or relevant (e.g., old bank statements outside the required timeframe).
- Illegible Scans: Uploading blurry or unreadable documents.
- Inconsistent Information: Documents containing different names, dates, or addresses than those stated in the application form.
Frequently Asked Questions (FAQs) About Spouse Visa Documents
Q1: How many pieces of cohabitation evidence do I need?
For cohabitation evidence, the Home Office typically expects 6-12 pieces of correspondence (letters, bills, statements) addressed to both partners jointly, or to each partner individually at the same address, spread evenly over the period you claim to have lived together (e.g., 2 years for initial, 2.5 years for extension).
Q2: Do I need to provide original documents?
When applying online, you will typically upload scanned copies of your documents. You should keep the original documents safe, as you may be asked to present them at your biometric appointment or if the Home Office requests them later. Never send original passports unless specifically instructed.
Q3: What if my financial documents are from a different country?
If your financial documents are from a different country, they must be translated into English by a certified translator. The Home Office will assess if the income or savings are genuinely accessible and transferable to the UK. Rules for overseas income can be complex.
Q4: Can I submit bank statements printed from online banking?
Yes, usually. However, if you print them yourself, they should ideally be stamped by the bank on each page to verify their authenticity. Alternatively, you can request original statements directly from your bank.
Q5: How current do my financial documents need to be?
For salaried employment, payslips and bank statements typically need to cover the last 6 months (or 12 months for Category B). For cash savings, bank statements must show the funds have been held for at least 6 months prior to the application date.
Conclusion
The UK Spouse Visa document checklist might seem daunting, but with careful planning and meticulous attention to detail, you can navigate it successfully. Each document plays a vital role in proving your eligibility and strengthening your application. By using this comprehensive checklist and understanding the nuances of document preparation, you are well on your way to a successful outcome. Remember, a complete and accurate application is your best chance for approval. For any other visa-related queries, explore our UK Visa Types section or our Home Page.
Related Guides You Might Find Useful
UK Spouse Visa Requirements (2025)
A comprehensive guide to all financial, relationship, and language requirements for your initial UK Spouse Visa.
Read More →
How to Extend Your UK Spouse Visa in 2025
Full requirements and checklist for extending your UK Spouse Visa.
Read More →
IELTS A1 for UK Spouse Visa: Essential Guide
Understand the A1 English language requirement for your initial Spouse Visa application.
Read More →
IELTS Life Skills A1 vs B1: What's the Difference?
Clarify the English language levels needed for different stages of your UK Spouse Visa journey.
Read More →
Reasons for UK Spouse Visa Refusal
Understand the common pitfalls that can lead to a Spouse Visa refusal and how to avoid them.
Read More →
Common UK Visa Application Mistakes to Avoid
Learn how to prevent common errors that can lead to visa application delays or refusals.
Read More →
UK Visa Application Checklist 2025 Edition
A general checklist to help you organize documents for any UK visa application.
Read More →
Indefinite Leave to Remain (ILR) Guide
Your ultimate guide to achieving permanent residency in the UK after completing your visa route.
Read More →
IELTS for UKVI: Your Essential Guide
Detailed information on all IELTS tests approved for UK visa and immigration purposes.
Read More →
English Language Requirements for UK Visas
Comprehensive details on English test requirements for various UK visa categories.
Read More →
How to Create a UKVI Account (2025)
Step-by-step guide to setting up your UK Visas and Immigration account.
Read More →
PTE Academic for UK Visas: Complete Guide
Everything you need to know about using PTE Academic for your UK visa application.
Read More →
Life in the UK Test: Complete Guide
Your essential resource for passing the Life in the UK Test for settlement and citizenship.
Read More →
British Citizenship by Marriage: Requirements & Process
Guide to applying for British citizenship through marriage to a British citizen.
Read More →
Explore All UK Visa Types
An overview of different UK visa categories and pathways.
Read More →
British Citizenship: Your Pathway to UK Nationality
Comprehensive guide to becoming a British citizen.
Read More →
IELTS Preparation in India: Your Path to Success
Find the best IELTS coaching and resources in India.
Read More →
// Smooth scroll for TOC links
document.querySelectorAll('.toc-sidebar a').forEach(anchor => {
anchor.addEventListener('click', function (e) {
e.preventDefault();
document.querySelector(this.getAttribute('href')).scrollIntoView({
behavior: 'smooth'
});
// Update active class for sidebar links
document.querySelectorAll('.toc-sidebar ul li a').forEach(link => {
link.classList.remove('active');
});
this.classList.add('active');
});
});
// Highlight active TOC link based on scroll position
window.addEventListener('scroll', () => {
const sections = document.querySelectorAll('.main-content h2, .main-content h1');
const navLinks = document.querySelectorAll('.toc-sidebar ul li a');
let current = '';
sections.forEach(section => {
const sectionTop = section.offsetTop;
const sectionHeight = section.clientHeight;
// Adjust offset for better timing, considering sticky header if any
if (pageYOffset >= sectionTop - window.innerHeight / 3) {
current = section.getAttribute('id');
}
});
navLinks.forEach(link => {
link.classList.remove('active');
if (link.getAttribute('href').includes(current)) {
link.classList.add('active');
}
});
});
// Initialize active class on page load if hash exists
window.addEventListener('load', () => {
if (window.location.hash) {
const targetId = window.location.hash;
const targetLink = document.querySelector(`.toc-sidebar a[href="${targetId}"]`);
if (targetLink) {
targetLink.classList.add('active');
// Scroll to target, accounting for sticky header
const targetElement = document.querySelector(targetId);
if (targetElement) {
const headerOffset = 100; // Adjust this if your actual header height is different
const elementPosition = targetElement.getBoundingClientRect().top + window.pageYOffset;
const offsetPosition = elementPosition - headerOffset;
window.scrollTo({
top: offsetPosition,
behavior: "smooth"
});
}
}
} else {
// If no hash, set the first link as active
const firstLink = document.querySelector('.toc-sidebar ul li a');
if (firstLink) {
firstLink.classList.add('active');
}
}
});
// Carousel navigation logic (if buttons were present in HTML)
// For this specific carousel, I've made it horizontally scrollable by default on mobile,
// so explicit buttons are not strictly necessary for responsiveness.
// If you add buttons, uncomment and adapt the following:
/*
const carouselTrack = document.getElementById('document-checklist-related-articles-track');
let currentCarouselPosition = 0;
function scrollCarousel(direction) {
const itemWidth = carouselTrack.querySelector('.carousel-item').offsetWidth + 30; // Item width + gap
const maxScroll = carouselTrack.scrollWidth - carouselTrack.clientWidth;
currentCarouselPosition += direction * itemWidth;
if (currentCarouselPosition maxScroll) {
currentCarouselPosition = maxScroll;
}
carouselTrack.style.transform = `translateX(-${currentCarouselPosition}px)`;
}
*/
{
"@context": "https://schema.org",
"@type": "Article",
"mainEntityOfPage": {
"@type": "WebPage",
"@id": "https://ieltstrainingcamp.com/uk-visas-and-immigration/uk-spouse-visa-document-checklist/"
},
"headline": "UK Spouse Visa Document Checklist (2025): Your Comprehensive Guide",
"description": "Comprehensive 2025 checklist for your UK Spouse Visa application. Ensure you have all required financial, relationship, and personal documents for a smooth process.",
"image": {
"@type": "ImageObject",
"url": "https://ieltstrainingcamp.com/images/uk-spouse-visa-document-checklist-hero.jpg",
"width": 1200,
"height": 675,
"alt": "Image of a UK Spouse Visa document checklist with UK flag and passport"
},
"author": {
"@type": "Organization",
"name": "IELTS Training Camp"
},
"publisher": {
"@type": "Organization",
"name": "IELTS Training Camp",
"logo": {
"@type": "ImageObject",
"url": "https://ieltstrainingcamp.com/logo/ieltstrainingcamp-logo.png",
"width": 250,
"height": 60
}
},
"datePublished": "2025-06-01T08:00:00+01:00",
"dateModified": "2025-06-01T08:00:00+01:00",
"keywords": [
"UK Spouse Visa document checklist",
"UK Spouse Visa documents",
"UK Spouse Visa 2025",
"UK Spouse Visa requirements",
"UK visa documents",
"Spouse Visa application checklist",
"financial requirement UK Spouse Visa",
"relationship evidence UK Spouse Visa",
"English language test for Spouse Visa",
"accommodation documents UK visa"
],
"faqProperty": [
{
"@type": "Question",
"name": "How many pieces of cohabitation evidence do I need?",
"acceptedAnswer": {
"@type": "Answer",
"text": "For cohabitation evidence, the Home Office typically expects 6-12 pieces of correspondence (letters, bills, statements) addressed to both partners jointly, or to each partner individually at the same address, spread evenly over the period you claim to have lived together (e.g., 2 years for initial, 2.5 years for extension)."
}
},
{
"@type": "Question",
"name": "Do I need to provide original documents?",
"acceptedAnswer": {
"@type": "Answer",
"text": "When applying online, you will typically upload scanned copies of your documents. You should keep the original documents safe, as you may be asked to present them at your biometric appointment or if the Home Office requests them later. Never send original passports unless specifically instructed."
}
},
{
"@type": "Question",
"name": "What if my financial documents are from a different country?",
"acceptedAnswer": {
"@type": "Answer",
"text": "If your financial documents are from a different country, they must be translated into English by a certified translator. The Home Office will assess if the income or savings are genuinely accessible and transferable to the UK. Rules for overseas income can be complex."
}
},
{
"@type": "Question",
"name": "Can I submit bank statements printed from online banking?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Yes, usually. However, if you print them yourself, they should ideally be stamped by the bank on each page to verify their authenticity. Alternatively, you can request original statements directly from your bank."
}
},
{
"@type": "Question",
"name": "How current do my financial documents need to be?",
"acceptedAnswer": {
"@type": "Answer",
"text": "For salaried employment, payslips and bank statements typically need to cover the last 6 months (or 12 months for Category B). For cash savings, bank statements must show the funds have been held for at least 6 months prior to the application date."
}
}
]
}
Ready to achieve your target IELTS score?
Join 15,000+ students with expert-led courses and AI practice tests.
Start Free Trial