.form-container {
            background: white;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            max-width: 400px;
            width: 100%;
        }
		.form-container2 {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    width: 100%;
    margin: 0 auto; /* This centers the div horizontally */
    position: absolute;
    top: 50%; /* This centers it vertically */
    left: 50%;
    transform: translate(-50%, -50%); /* This ensures perfect centering */
	
}
.form-container3 {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    width: 100%;
    margin: 0 auto; /* This centers the div horizontally */
    position: absolute;
    top: 50%; /* This centers it vertically */
    left: 50%;
    transform: translate(-50%, -50%); /* This ensures perfect centering */
	
}

        .form-group {
            margin-bottom: 15px;
        }
        label {
            display: block;
            font-weight: bold;
            margin-bottom: 5px;
        }
        input[type="text"], input[type="date"], input[type="email"] {
            width: calc(100% - 10px);
            padding: 8px;
            border: 1px solid #ccc;
            border-radius: 4px;
            box-sizing: border-box;
        }
        .date-inputs {
            display: flex;
            justify-content: space-between;
        }
        .date-input {
            width: 48%;
        }
        .find-hotels-btn {
            width: 100%;
            padding: 10px;
            font-size: 16px;
            font-weight: bold;
            color: white;
            background-color: gold;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        .find-hotels-btn:hover {
            background-color: goldenrod;
        }