﻿.app-form {
  margin-top: 0px;
  padding-top: 0px;
  border: none;
  padding-inline: 0px;
  max-width: 1000px;
}
.app-form .fg {
  --input-pushdown: 15px;
  --label-pushup: 4px;
  display: flex;
  flex-direction: column;
  margin-top: 15px;
  margin-bottom: 3px;
  gap: 5px;
  position: relative;
  border: 1px solid rgba(126, 126, 126, 0.3294117647);
  border: 1px solid #5e5e5e;
  border-radius: 5px;
  height: 50px;
  min-height: fit-content;
}
.app-form .fg select {
  padding-inline: 15px;
  display: flex;
  min-height: 100% !important;
  height: 100% !important;
  border: 0;
  background: transparent;
  border: 0;
  outline: 0;
  color: var(--theme-text-color);
}
.app-form .fg select option {
  background: var(--theme-bg) !important;
  font-size: 13px;
}
.app-form .fg select:focus {
  outline: 0;
}
.app-form .fg-readonly {
  pointer-events: none;
}
.app-form .fg label {
  position: absolute;
  font-size: 12px;
  top: 13px;
  left: 5px;
  transition: all linear 0.1s;
  pointer-events: none;
  opacity: 0.7;
}
.app-form .fg input:read-only {
  background: transparent;
}
.app-form .fg input {
  border: none !important;
  outline: none !important;
  background: transparent;
  height: 45px;
  padding-inline: 15px;
  font-size: 14px;
  color: #6d6d6d;
}
.app-form .fg input:focus {
  border: 0;
  outline: 0;
  color: var(--theme-text-color);
}
.app-form .fg:focus-within {
  border-color: none;
  outline: 2px solid var(--app-accent);
}
.app-form .fg:focus-within input {
  padding-top: var(--input-pushdown);
  height: 50px;
}
.app-form .fg:focus-within label {
  top: var(--label-pushup);
}
.app-form .fg:focus-within .phone-prefix {
  opacity: 0.4 !important;
}
.app-form .fg:has(.phone-prefix) input {
  padding-left: 36px;
}
.app-form .fg input:not(:placeholder-shown) + label {
  top: var(--label-pushup);
}
.app-form .fg input:not(:placeholder-shown) {
  padding-top: var(--input-pushdown);
  height: 50px;
}
.app-form .fg:has(input:placeholder-shown) .phone-prefix {
  opacity: 0;
}
.app-form .fg .validation-message {
  padding-left: 10px !important;
  color: blue !important;
}
.app-form .sh-button {
  min-height: 50px;
}
.app-form .phone-prefix {
  position: absolute;
  bottom: 8px;
  font-size: 13px;
  left: 12px;
  opacity: 0.4;
}
