.auth-wrapper {
  display: flex;
  width: 100%;
  height: 100vh;
}

.auth-wrapper .auth-image {
  width: 25%;
  display: none;
}

.auth-wrapper .auth-image img {
  object-fit: cover;
}

.auth-wrapper .auth-form {
  width: 100%;
  justify-content: center;
  align-items: center;
}

.auth-wrapper .auth-form .auth-form__container,
.auth-wrapper .auth-form .form-body .form-title {
  gap: 20px;
}

.auth-wrapper .auth-form .form-body {
  gap: 30px;
  width: 100%;
  max-width: 380px;
  padding: 0 16px;
}

.auth-wrapper .auth-form .auth-form__container .company h2 {
  font-size: 18px;
  font-weight: 500;
}

.auth-wrapper .auth-form .form-body .form-title h1 {
  font-size: 20px;
  font-weight: 400;
}

.auth-wrapper .auth-form .auth-form__container .company {
  display: flex;
  align-items: center;
  gap: 10px;
}

.auth-wrapper .auth-form .auth-form__container .company .logo {
  width: 35px;
}

.auth-wrapper .auth-form .auth-form__container .form-body .form-title p {
  color: var(--grey-primary);
}

.auth-wrapper .auth-form .auth-form__container .form-body .form-fields {
  gap: 15px;
  width: 100%;
}

.auth-wrapper .auth-form .auth-form__container .form-body p.error {
  color: var(--danger);
  text-align: center;
}

.auth-wrapper
  .auth-form
  .auth-form__container
  .form-body
  .form-fields
  .field-container
  a {
  text-align: right;
}

.auth-wrapper .auth-form .auth-form__container .form-body .no-acc {
  gap: 8px;
  justify-content: center;
}

.auth-wrapper .auth-form .auth-form__container .form-body .no-acc a {
  font-weight: 500;
}

.auth-wrapper .auth-form .form-body.schedule {
  width: 100%;
  max-width: 560px;
}

.auth-wrapper
  .auth-form
  .form-body.schedule
  .schedule-col
  .schedule-row__header
  .col-day {
  width: 120px;
}

.auth-wrapper .auth-form .form-body.schedule .schedule-col .schedule-row__body {
  gap: 7px;
}

.auth-wrapper
  .auth-form
  .form-body.schedule
  .schedule-col
  .schedule-row__body
  .row-day {
  width: 120px;
}

.auth-wrapper
  .auth-form
  .form-body.schedule
  .schedule-col
  .schedule-row__body
  .row-schedule {
  gap: 25px;
  align-items: center;
}

.auth-wrapper
  .auth-form
  .form-body.schedule
  .schedule-col
  .schedule-row__body
  .row-schedule
  .col-days {
  gap: 10px;
}

.auth-wrapper
  .auth-form
  .form-body.schedule
  .schedule-col
  .schedule-row__body
  .row-schedule
  .row-working-hours,
.auth-wrapper .auth-form .form-body.schedule .schedule-col {
  gap: 15px;
}

.auth-wrapper
  .auth-form
  .form-body.schedule
  .schedule-col
  .schedule-row__body
  .row-schedule
  .row-working-hours
  .hours-field
  input {
  width: 125px;
}

/* ── Service searchable select ── */
.service-select-wrapper {
  position: relative;
  width: 100%;
}

.service-select-wrapper .service-input {
  width: 100%;
}

.service-select-wrapper .service-input--selected {
  border-color: var(--primary, #111);
}

.service-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  background: var(--bg-primary, #fff);
  border: 1px solid var(--border, #e5e5e5);
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0,0,0,.10);
  z-index: 999;
  max-height: 240px;
  overflow-y: auto;
}

.service-dropdown__item {
  padding: 10px 14px;
  font-size: 13px;
  cursor: pointer;
  transition: background .15s;
}

.service-dropdown__item:hover {
  background: var(--bg-secondary, #f5f5f5);
}

@media all and (max-width: 480px) {
  .auth-wrapper .auth-form .form-body {
    padding: 0 12px;
  }

  .auth-wrapper .auth-form .auth-form__container .form-body .form-fields {
    gap: 12px;
  }

  .auth-wrapper .auth-form .form-body .form-title h1 {
    font-size: 18px;
  }
}

@media all and (min-width: 1280px) {
  .auth-wrapper .auth-image {
    display: initial;
  }

  .auth-wrapper .auth-form {
    width: 75%;
  }

  .auth-wrapper .auth-form .form-body {
    width: 420px;
    max-width: 420px;
    padding: 0;
  }
}
