body {
    background-color: #292a2b;
}


.form-title {
    display: flex;
    justify-content: flex-start;
}

/* Custom Section Styling */
.custom-section {
    background-image: url(../images/lounge.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.form-wrapper {
    max-width: 1200px;
    width: 100%;
    display: flex;
    justify-content: flex-start;
    position: relative;
    top: 0%;
    left: 5%;
}

/* Form Container */
.form-container {
    /* background: rgba(0, 0, 0, 0.8); */
    border-radius: 10px;
    max-width: 400px;
    /* Form ka width */
    width: 100%;
}

/* Form Title */
.form-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 20px;
    color: #fff;
}

/* Form Fields */
.form-group {
    margin-bottom: 15px;
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 12px;
    border: none;
    outline: 2px solid #ff9800;
    border-radius: 5px;
    font-size: 16px;
    background: #222;
    color: white;
}

.form-input:focus,
.form-textarea:focus {
    outline: 2px solid #ff9800;
}

/* Submit Button */
.form-button {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 5px;
    background: #ff9800;
    color: white;
    font-size: 18px;
    cursor: pointer;
    transition: 0.3s;
}

.form-button:hover {
    background: #e68900;
}

/* Responsive Fix */
@media screen and (max-width: 768px) {
    .custom-section {
        justify-content: center;
        /* Mobile pe center ho jaye */
        padding-left: 0;
    }

    .form-wrapper {
        justify-content: center;
        /* Mobile view pe center ho */
    }

    .form-container {
        max-width: 90%;
        /* Mobile pe form responsive ho */
    }
}