body {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    background: #f9f9f9;
}

.navbar {
    background: #007bff;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.houseImage {
    background: white;
    width: 50px;
    height: 50px;
    font-size: xx-large;
    padding-left: 7px;
    padding-top: 8px;
    color: black;
    border-radius: 50%;
}

.dreamHouse {
    color: white;
    text-decoration: none;
    padding-left: 15px;
    font-size: 1.6rem;
    font-weight: bold;
}

.logInButton {
    margin-left: auto;
}

.navBarButtonFontSize {
    font-size: 1rem;
    font-family: 'Arial', sans-serif;
}

/* Form Container Style */
.form-container {
    max-width: 900px;
    margin: 50px auto;
    padding: 30px;
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.form-container h2 {
    text-align: center;
    color: #333;
    margin-bottom: 20px;
    font-size: 2rem;
}

.form-card {
    margin-bottom: 30px;
    border: 1px solid #ddd;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.form-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.form-card img {
    width: 100%;
    height: auto;
    border-bottom: 1px solid #ddd;
}

.card-body {
    padding: 20px;
}

.card-title {
    font-size: 1.4rem;
    color: #007bff;
    margin-bottom: 15px;
}

.card-text {
    font-size: 1rem;
    color: #555;
    margin-bottom: 20px;
}

.btn-primary {
    background: #007bff;
    border: none;
    padding: 10px 20px;
    color: white;
    font-size: 1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-primary:hover {
    background: #0056b3;
}
