/* Contact Manager Modal Styles */
.contact-manager-modal {
  position: fixed;
  z-index: 99999;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.contact-manager-modal__content {
  position: relative;
  background: #fff;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  margin: 40px 0;
}

.contact-manager-modal__close {
  position: absolute;
  top: 10px;
  right: 10px;
  background: none;
  cursor: pointer;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-manager-modal__body {
  display: flex;
  flex-direction: row;
  justify-content: center;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
}

.contact-manager-modal__left {
  background: url('../assets/images/bg-pattern.png') repeat;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 200px 80px;
}

.contact-manager-modal__subtitle {
  color: var(--grey);
  margin-bottom: 20px;
}

.contact-manager-modal__title {
  color: var(--gold);
}

.contact-manager-modal__right {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 200px 190px;
}

.contact-manager-modal__desc {
  color: var(--grey);
  margin-bottom: 40px;
}

.contact-manager-modal__form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-manager-modal__input {
  width: 100%;
  padding: 12px 10px;
  border: none;
  border-bottom: 1px solid var(--light-grey);
  font-size: 16px;
  background: transparent;
  color: var(--extra-grey);
  outline: none;
  transition: border-color 0.2s;
}

.contact-manager-modal__input:focus {
  border-bottom: 1.5px solid #A7977B;
}

.contact-manager-modal__submit {
  width: 100%;
  background: #A7977B;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  padding: 16px 0;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  margin-top: 12px;
  transition: background 0.2s;
}

.contact-manager-modal__submit:hover {
  background: #8d7a5c;
}

.contact-manager-modal__checkbox-label {
  display: flex;
  align-items: flex-start;
  font-size: 13px;
  color: #757575;
  margin-top: 8px;
  gap: 8px;
}

.contact-manager-modal__checkbox-label input[type="checkbox"] {
  margin-top: 2px;
}

.contact-manager-modal__checkbox-label a {
  color: #A7977B;
  text-decoration: underline;
}

@media (max-width: 900px) {
  .contact-manager-modal__body {
    flex-direction: column;
    justify-content: flex-start;
  }

  .contact-manager-modal__left {
    padding: 80px 16px 40px 16px;
    width: 100%;
  }

  .contact-manager-modal__right {
    padding: 30px 16px 16px 16px;
    width: 100%;
  }
}

@media (max-width: 600px) {
  .contact-manager-modal__content {
    margin: 0;
  }
}