.main-content {
    width: 60%;
    margin: 80px auto;
    border: solid 1px #efefef;
    box-shadow: 0px 0px 16px #d8d8d8;
    border-radius: 10px;
    padding: 50px 20px;
}
.pri-color {
    color: #d2a45f;
}
.global-button {
    background: #d2a45f;
    color: #fff;
    text-decoration: none !important;
    padding: 18px 50px;
    border-radius: 50px;
    font-size: 22px;
}

.form-container {
  max-width: 350px;
  margin: auto;
}

label {
  display: block;
  margin-top: 15px;
  font-size: 14px;
  font-weight: 500;
  color: #333;
}

.required {
  color: red;
  margin-left: 4px;
}

.tooltip {
  display: inline-block;
  background: #333;
  color: #fff;
  border-radius: 50%;
  font-size: 11px;
  width: 16px;
  height: 16px;
  text-align: center;
  line-height: 16px;
  margin-left: 4px;
  cursor: default;
}

input[type="text"],
select {
  width: 100%;
  padding: 10px 8px;
  font-size: 14px;
  margin-top: 5px;
  box-sizing: border-box;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.mobile-group {
  display: flex;
  gap: 5px;
}

.mobile-group select {
  width: 30%;
}

.mobile-group input {
  width: 70%;
}

.divider {
  border: none;
  border-top: 1px dashed #ccc;
  margin: 10px 0 20px;
}

button[type="submit"] {
  background: #d8a55d;
  color: #fff;
  border: none;
  padding: 10px;
  width: 100%;
  font-size: 14px;
  border-radius: 20px;
  margin-top: 20px;
  cursor: pointer;
}

@media (max-width: 767px) {
    .main-content {
        width: 85%;
        margin: 40px auto;
    }
    .logo {
        padding-top: 80px !important;
    }
    .logo img {
        width: 180px !important;
    }
    .authenticated img, .fake img {
      width: 60px !important;
    }
    .prod-images img {
        width: 80% !important;
    }
    .h3-title {
      font-size: 17px !important;
    }
    .h4-title {
      font-size: 14px !important;
    }
    .social-medias img {
      width: 40px;
    }
    .global-button {
      padding: 13px 34px;      
      font-size: 15px;
    }
}