html {
  box-sizing: border-box;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ol,
ul {
  margin: 0;
  padding: 0;
  font-weight: normal;
}

ol,
ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: linear-gradient(to bottom, #d6a5ed, #c3d5fa);
}

.form-center {
  display: flex;
  justify-content: center;
  align-items: center;
  padding:  3rem 0;
}

.form-container {
  display: flex;
  max-width: 900px;
  width: 100%;
  background-color: #000;
  border-radius: 9px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.form-image {
  flex: 1;
  overflow: hidden;
}

.form-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.form-content {
  flex: 1;
  padding: 30px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

h2 {
  margin-bottom: 30px;
  font-size: 1.8rem;
  color: #fff;
}

form {
  display: flex;
  flex-direction: column;
}

label {
  font-size: 1rem;
  margin-bottom: 5px;
}

input,
textarea {
  border: 1px solid #f21414;
  padding: 12px;
  border: none;
  border-radius: 5px;
  outline: none;
  background: #333;
  color: #fff;
}

#message {
  margin-bottom: 20px !important;

}

input::placeholder,
textarea::placeholder {
  color: #bbb;
}

textarea {
  resize: none;
}

button {
  border: 1px solid #fb0404;
  padding: 10px;
  background-color: #3edc81;
  color: #000;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
}

button:hover {
  background-color: #32b970;
}

/* self */
.form-image-set {
  opacity: 0.8;
}

.submit-form-btn {
  font-size: 1.2rem;
  font-family: Verdana, sans-serif;
  font-weight: 500;
}

.navbar-brand {
  width: 160px;
  height: auto;
}

.navbar-brand img {
  border-radius: 7px;
}

.nav-item {
  padding-left: 1.5rem;
}

#enq-btn-navbar {
  margin: 0 2rem;
  border-radius: 4px;
  padding: 10px 20px;
  background: white;
  font-weight: 600;
}

#enq-btn-navbar:hover {
  transform: scale(1.1);
}

@media (max-width: 588px) {
  .form-image {
    display: none;
  }
}
