@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');

body {
    font-family: 'Outfit', sans-serif;
    background-color: #f9f9f9;
    margin: 0;
    padding: 0;


}

@media only screen and (max-width: 600px) {
    body {
        background-color: #f9f9f9;
    }
}

.container {
    width: 80%;
    margin: 50px auto;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
}

@media only screen and (max-width: 600px) {
    .container {
        box-shadow: 0 0 10px rgba(0, 0, 0, 0);
    }
}

.progress-bar {
    margin-bottom: 20px;
    background-color: #f0f0f0;
    height: 10px;
    border-radius: 5px;
}

.progress {
    background-color: #f9943b;
    height: 100%;
    width: 0;
    border-radius: 5px;
}

.form-container {
    padding: 20px;
}

.part {
    display: none;
}

.part.active {
    display: block;
}

h2 {
    color: #333;
    font-size: 24px;
    margin-bottom: 20px;
    text-align: center;
}

.button-container {
    display: flex;
    justify-content: space-between;
}

button {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}

button:hover {
    background-color: #f9943b;
    color: #fff;
}

.prev {
    background-color: #ccc;
}

.next {
    background-color: #f9943b;
    color: #fff;
}

.submit {
    background-color: #f9943b;
    color: #fff;
}

input[type="text"],
input[type="number"],
input[type="date"],
input[type="email"] {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
}

@media (max-width: 600px) {
    input[type="text"],
    input[type="number"],
    input[type="date"],
    input[type="email"] {
        width: 100%;
    }
}

.option-buttons {
    display: flex;
    flex-direction: column;
}

.selection-btn {
    display: flex;
    align-items: center;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #fff;
    cursor: pointer;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.selection-btn:hover {
    background-color: #f9943b;
    border-color: black;
}

.selection-btn.selected .circle {
    background-color: #f9943b;
    border-color: #f9943b;
}

.circle {
    width: 16px;
    height: 16px;
    border: 2px solid #ccc;
    border-radius: 50%;
    margin-right: 10px;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.bedroom-selection {
    display: flex;
    align-items: center;
}

.btn-group {
    display: flex;
    align-items: center;
}

.minus-btn,
.plus-btn {
    width: 40px;
    padding: 10px;
    background-color: #f9943b;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.minus-btn:hover,
.plus-btn:hover {
    background-color: #e08225;
}

input[type="number"] {
    width: 60px;
    margin: 0 10px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    text-align: center;
}

.text-input {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    box-sizing: border-box;
}

.text-input:focus {
    outline: none;
    border-color: #f9943b;
}

textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-bottom: 15px;
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    box-sizing: border-box;
    height: 50px;
}

input[type="file"] {
    border: 1px solid #ccc;
    padding: 10px;
    margin-bottom: 20px;
    cursor: pointer;
    border-radius: 5px;
    background-color: #fff;
}

label {
    display: block;
    margin-bottom: 5px;
    color: #333;
    font-size: 16px;
}

input[type="file"]::file-selector-button {
    background-color: #f9943b;
    color: white;
    padding: 10px;
    border-radius: 5px;
    border: none;
    margin-right: 10px;
}

input[type="file"]::file-selector-button:hover {
    background-color: #e08225;
}

.image-container {
    max-width: 100%;
    display: flex;
    justify-content: center;
}

.responsive-image {
    max-width: 100%;
    height: auto;
}


.logo-container {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 1001; /* Ensure it appears above other elements */
}

.logo-container img {
    height: 60px; /* Adjust the height as needed */
    width: auto;
}

/* Hide the logo on mobile devices */
@media (max-width: 768px) {
    .logo-container {
        display: none;
    }
}

