body {
  background-image: url('../images/bg-2.jpg') !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  background-position: center center !important;
  background-attachment: fixed !important;
  background-color: #101C2C;
  color: #fff;
  min-height: 100vh;
  margin: 0;
}

form {
  background-color: #121f30;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0px 0px 15px rgba(181, 142, 90, 0.2);
  max-width: 400px;
  margin: 80px auto;
}

input,
button {
  width: 100%;
  margin-top: 10px;
  padding: 12px;
  border-radius: 5px;
  border: none;
  font-size: 16px;
}

button {
  background-color: #B58E5A;
  color: white;
  cursor: pointer;
}

button:hover {
  background-color: #a17948;
}

.text-orange {
  color: #fd7e14 !important;
}

.bg-kaya {
  background-color: #101C2C !important;
}

.btn-orange {
  background-color: #B58E5A !important;
  color: #fff !important;
  border: none;
  transition: all 0.3s ease;
}

.btn-orange:hover {
  background-color: #101C2C !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

footer {
  text-align: center;
  padding: 40px 20px;
  color: #fff;
  width: 100%;
}

.footer-contact a {
  transition: opacity 0.3s ease, transform 0.3s ease;
  display: inline-block;
}

.footer-contact a:hover {
  opacity: 0.8;
  transform: translateY(-2px);
}

.footer-contact i {
  font-size: 1.1rem;
}