/* Campo de telefone: DDI (+55) + numero nacional (ex.: (11) 99583-7366) */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.phone-field {
  width: 100%;
}

.phone-field__row {
  display: flex;
  align-items: stretch;
  gap: 8px;
  flex-wrap: wrap;
}

.phone-field__cc {
  flex: 0 0 auto;
  min-width: 5.8rem;
  max-width: 7rem;
  padding: 10px 8px;
  font-size: 14px;
  border-radius: 8px;
  border: 1px solid var(--border, #2a2a30);
  background: var(--input-bg, #0a0a0b);
  color: var(--text, #e4e4e7);
}

.phone-field__local {
  flex: 1 1 200px;
  min-width: 0;
  padding: 10px 12px;
  font-size: 14px;
  border-radius: 8px;
  border: 1px solid var(--border, #2a2a30);
  background: var(--input-bg, #0a0a0b);
  color: var(--text, #e4e4e7);
}

.phone-field__cc:focus,
.phone-field__local:focus {
  outline: none;
  border-color: #22d3ee;
}

html[data-theme="light"] .phone-field__cc,
html[data-theme="light"] .phone-field__local {
  background: #fff;
  color: #0f172a;
  border-color: #cbd5e1;
}
