.form-group {
    margin-bottom: 10px;
    width: 50%;
}

label {
    display: block;
    margin-bottom: 5px;
    color: white;
}

input,
textarea,
select {
    width: 100%;
    padding: 1px;
    border: none;
    border-bottom: 1px solid #ccc;
    background-color: #222;
    color: #fff;
}

button {
    background-color: #007bff;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background-color: #0062cc;
}

.form-holder {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
    padding: 20px 0px;
}

input {
    width: 100%;
}

form {
    margin: 0px;
    padding: 10px;
    border-radius: 5px;
}
input {
    color-scheme: dark;
}
/* ======================= */
.flight {
    position: relative;
}
.submit .plane {
    position: absolute;
    left: 0%;
    bottom: 10px;
    z-index: 999;
    opacity: 0;
}
.sumbit .plane img {
    width: 100px;
    height: 100px;
    transform: rotate(0deg);
}
.submit .enquire-now-btn:hover .submit .plane{
    /* transform: rotate(360deg);
    position: absolute;
    left: 10rem;
    bottom: 30px;
    z-index: 999; */
    left: 100%;
    opacity: 1;
}