<!DOCTYPE html>

<html lang="en">

<head>

    <meta charset="UTF-8">

    <meta name="viewport" content="width=device-width, initial-scale=1.0">

    <title>Invitation Rent - Rental Application</title>

    <style>

        body {

            font-family: Arial, sans-serif;

            background-color: #f4f6f8;

            margin: 0;

            padding: 0;

        }


        header {

            background-color: #4CAF50;

            color: white;

            padding: 20px;

            text-align: center;

        }


        h1 {

            margin: 0;

        }


        main {

            max-width: 600px;

            margin: 30px auto;

            background-color: white;

            padding: 30px;

            border-radius: 8px;

            box-shadow: 0 0 10px rgba(0,0,0,0.1);

        }


        label {

            display: block;

            margin-top: 15px;

            font-weight: bold;

        }


        input, select, textarea {

            width: 100%;

            padding: 10px;

            margin-top: 5px;

            border-radius: 4px;

            border: 1px solid #ccc;

            box-sizing: border-box;

        }


        button {

            margin-top: 20px;

            padding: 15px;

            width: 100%;

            background-color: #4CAF50;

            color: white;

            font-size: 16px;

            border: none;

            border-radius: 5px;

            cursor: pointer;

        }


        button:hover {

            background-color: #45a049;

        }


        .section-title {

            margin-top: 30px;

            font-size: 18px;

            color: #333;

            border-bottom: 1px solid #ccc;

            padding-bottom: 5px;

        }

    </style>

</head>

<body>

    <header>

        <h1>Invitation Rent - Rental Application</h1>

    </header>

    <main>

        <form>

            <div class="section-title">Personal Information</div>

            <label for="fullName">Full Name</label>

            <input type="text" id="fullName" name="fullName" placeholder="Enter your full name" required>


            <label for="email">Email Address</label>

            <input type="email" id="email" name="email" placeholder="Enter your email" required>


            <label for="phone">Phone Number</label>

            <input type="tel" id="phone" name="phone" placeholder="Enter your phone number" required>


            <div class="section-title">Rental History</div>

            <label for="currentAddress">Current Address</label>

            <input type="text" id="currentAddress" name="currentAddress" placeholder="Enter your current address" required>


            <label for="landlord">Current Landlord</label>

            <input type="text" id="landlord" name="landlord" placeholder="Landlord name" required>


            <label for="landlordPhone">Landlord Phone</label>

            <input type="tel" id="landlordPhone" name="landlordPhone" placeholder="Landlord phone" required>


            <div class="section-title">Employment Information</div>

            <label for="employer">Employer</label>

            <input type="text" id="employer" name="employer" placeholder="Employer name" required>


            <label for="position">Position</label>

            <input type="text" id="position" name="position" placeholder="Your position" required>


            <label for="income">Monthly Income</label>

            <input type="number" id="income" name="income" placeholder="Enter your monthly income" required>


            <div class="section-title">Additional Information</div>

            <label for="notes">Notes / Comments</label>

            <textarea id="notes" name="notes" rows="4" placeholder="Anything else you want us to know"></textarea>


            <button type="submit">Submit Application</button>

        </form>

    </main>

</body>

</html>