.auth-wrap--register{
  max-width: 880px;
}

.register-card{
  overflow: visible;
}

.register-form{
  display: grid;
  gap: 16px;
}

.location-box{
  margin: 4px 0;
  padding: 16px;
  border-radius: 22px;
  border: 1px solid rgba(124,92,255,.28);
  background:
    radial-gradient(520px 220px at 0% 0%, rgba(124,92,255,.18), transparent 62%),
    radial-gradient(460px 220px at 100% 0%, rgba(46,231,165,.11), transparent 62%),
    rgba(255,255,255,.035);
}

.location-box__head{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
}

.location-box__title{
  margin: 0 0 5px;
  font-size: 18px;
  line-height: 1.2;
}

.location-box__desc{
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
  font-size: 14px;
}

.location-box__icon{
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 16px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.10);
  font-size: 22px;
}

.location-actions{
  display: grid;
  grid-template-columns: auto 46px minmax(0, 1fr);
  align-items: start;
  gap: 12px;
}

.location-divider{
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.location-input-wrap{
  position: relative;
  min-width: 0;
}

.location-suggestions{
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% - 4px);
  z-index: 30;
  overflow: hidden;
  max-height: 292px;
  overflow-y: auto;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(18,18,34,.98);
  box-shadow: 0 18px 50px rgba(0,0,0,.36);
  backdrop-filter: blur(14px);
}

.location-suggestion{
  width: 100%;
  display: grid;
  gap: 3px;
  padding: 11px 12px;
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  color: inherit;
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.location-suggestion:last-child{
  border-bottom: 0;
}

.location-suggestion:hover,
.location-suggestion.is-active{
  background: rgba(124,92,255,.18);
}

.location-suggestion__main{
  font-weight: 900;
  font-size: 14px;
  line-height: 1.25;
}

.location-suggestion__sub{
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.location-suggestion__coords{
  color: rgba(255,255,255,.48);
  font-size: 11px;
  line-height: 1.25;
}

.location-suggestions__empty{
  padding: 12px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.location-status{
  margin-top: 12px;
  padding: 11px 12px;
  border-radius: 14px;
  border: 1px dashed rgba(255,255,255,.18);
  color: var(--muted);
  background: rgba(0,0,0,.12);
  font-size: 13px;
  line-height: 1.45;
}

.location-status.is-ok{
  color: #dffdf3;
  border-color: rgba(46,231,165,.32);
  background: rgba(46,231,165,.08);
}

.location-status.is-error{
  color: #ffdbe2;
  border-color: rgba(255,92,122,.36);
  background: rgba(255,92,122,.10);
}

.location-status.is-loading{
  color: #efeaff;
  border-color: rgba(124,92,255,.38);
  background: rgba(124,92,255,.10);
}

.location-note{
  margin-top: 10px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

@media (max-width: 760px){
  .location-actions{
    grid-template-columns: 1fr;
  }

  .location-divider{
    min-height: auto;
    justify-content: flex-start;
  }

  .location-box__head{
    align-items: center;
  }

  .location-suggestions{
    position: static;
    margin-top: 8px;
    max-height: 260px;
  }
}