@import url('https://fonts.googleapis.com/css2?family=Wix+Madefor+Text:ital,wght@0,400..800;1,400..800&display=swap');

body {
  font-family: "Wix Madefor Text", sans-serif;
  background: #f4f7f8;
}

/* HEADER */
.top-header {
  background: #fff;
  padding: 15px 0;
  border-bottom: 1px solid #eee;
}

.header-logo img {
  max-height: 55px;
}

.header-right {
  font-size: 14px;
  text-align: right;
}

/* FORM CARD */
.form-wrapper {
  min-height: calc(100vh - 260px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 15px;
}

.form-card {
  background: #fff;
  max-width: 700px;
  width: 100%;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.form-control,
.form-select {
  border-radius: 10px;
  padding: 12px;
}

.form-control:focus,
.form-select:focus {
  box-shadow: none;
  border-color: #1b9aaa;
}

.submit-btn {
  background: #1b9aaa;
  border: none;
  padding: 14px;
  border-radius: 30px;
  font-size: 18px;
}

.submit-btn:hover {
  background: #14828f;
}

/* FOOTER */
.footer {
  background: #d9ecef;
  padding: 50px 0;
}

.footer-logo img {
  max-height: 70px;
}

.footer-right {
  font-size: 16px;
}

.footer-right strong {
  color: #0D6973;
}

.footer a {
  color: #000;
  text-decoration: underline;
}

.footer-bottom {
  font-size: 13px;
  color: #7daab0;
  margin-top: 10px;
}

.footer-bottom-mobile {
  display: none;
}

@media (max-width:768px) {
  .header-logo {
    text-align: center;
  }

  .header-right {
    text-align: center;
  }

  .header-logo img {
    width: 100%;
    max-width: 200px;
  }

  .header-right img {
    width: 100%;
  }

  .footer-bottom {
    display: none;
  }

  .footer-bottom-mobile {
    display: block;
    font-size: 13px;
    color: #7daab0;
    margin-top: 10px;
  }

  .align-items-center {
    padding: 0 15px
  }
}