:root {
  --main-color: #36404d;
  --hover-color: #2b333d;
  --secondary-color: #e09f26;
  --text-main: #484848;
  --text-secondary: #2a2a2a;
  --text-light: #434343;
  --text-extra-light: #848484;
  --background-color: #fff;
}

@font-face {
  font-family: "Almarai400";
  src: url("../font/Almarai/Almarai-Regular.ttf");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Almarai700";
  src: url("../font/Almarai/Almarai-Bold.ttf");
  font-weight: 700;
  font-style: bold;
}

html,
body {
  height: 100%;
  margin: 0;
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--background-color);
}

.container-form {
  max-width: 600px;
  margin: auto;
  padding: 30px;
  border-radius: 10px;
}

.hidden {
  display: none;
}

.input-title {
  font-family: "Almarai700";
  font-size: 20px;
  text-align: center;
  padding: 10px 0;
}

.register-categories {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
}
.register-category {
  padding: 10px 0;
  flex: 1;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-direction: column;
  gap: 8px;
  border: 1px solid #d1d1d1;
  height: 80px;
  cursor: pointer;
  width: 150px;
}

.register-category-title {
  font-size: 12px;
  color: #a09f9f;
  font-family: "Almarai400";
  font-style: normal;
  font-weight: 400;
}
.register-category:hover .register-category-title {
  color: var(--main-color);
}
.register-category:hover {
  border: 1px solid var(--main-color);
}
.register-category:hover svg path {
  stroke: var(--main-color);
}

.icon-wrapper {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-wrapper svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
  overflow: visible;
}

.form-data {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.field {
  color: #4b4b4b;
  width: 100%;
  font-family: "Almarai700";
  font-size: 12px;
  border: 1px solid #d1d1d1;
  background: transparent;
  padding: 11px 0.5rem;
  border-radius: 0px;
  resize: none;
}

.field:focus-visible {
  outline: none;
  border: 1px solid var(--main-color);
}

.submit-field {
  margin-top: 25px;
  border: none;
  outline: none;
  width: 100%;
  background: var(--main-color);
  border-radius: 0;
  color: #fff;
  text-align: center;
  font-family: "Almarai700";
  font-size: 14px;
  padding: 12px;
  cursor: pointer;
  transition: 0.3s ease;
}

.field-label {
  font-size: 14px;
  font-family: "Almarai400";
}

.field-label span {
  color: crimson;
  font-size: 12px;
}

.second-label {
  font-family: "Almarai400";
  color: var(--text-extra-light) !important;
  font-size: 12px;
  margin-bottom: 5px;
}

.field-group {
  display: flex;
  flex-direction: column;
}

.back-btn {
  background-color: var(--main-color);
  padding: 10px 10px;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: auto;
}

.back-btn svg {
  width: 13px;
  height: 13px;
}

@media (max-width: 768px) {
  .input-title {
    font-size: 18px;
  }

  .register-category-title {
    font-size: 14px;
  }

  .field {
    font-size: 15px;
  }

  .field-label {
    font-size: 16px;
  }

  .submit-field {
    font-size: 16px;
  }
}

.imgContainer {
  display: flex;
  justify-content: center;
}

.title {
  font-family: "Almarai700";
  text-align: center;
}

.governorate-select {
  padding-right: 1.5em;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg id='SVGRepo_bgCarrier' stroke-width='0'%3E%3C/g%3E%3Cg id='SVGRepo_tracerCarrier' stroke-linecap='round' stroke-linejoin='round'%3E%3C/g%3E%3Cg id='SVGRepo_iconCarrier'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M12.7071 14.7071C12.3166 15.0976 11.6834 15.0976 11.2929 14.7071L6.29289 9.70711C5.90237 9.31658 5.90237 8.68342 6.29289 8.29289C6.68342 7.90237 7.31658 7.90237 7.70711 8.29289L12 12.5858L16.2929 8.29289C16.6834 7.90237 17.3166 7.90237 17.7071 8.29289C18.0976 8.68342 18.0976 9.31658 17.7071 9.70711L12.7071 14.7071Z' fill='%23000000'%3E%3C/path%3E%3C/g%3E%3C/svg%3E")
    no-repeat left 0.9em center;
  background-size: 1.65em auto;
}
