
.email-dialog[data-v-b340bd46] {
  position: relative;
  width: 500px;
  max-width: 95vw;
  height: 90vh;
  max-height: 700px;
  background: rgba(255, 255, 255, 0.98) !important;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 217, 255, 0.3);
  overflow: hidden;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
}
.email-dialog.dark[data-v-b340bd46] {
  background: rgba(0, 0, 0, 0.98) !important;
  border-color: rgba(0, 217, 255, 0.3);
}

/* Архитектурная сетка */
.dialog-grid[data-v-b340bd46] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.1;
}
.dialog-line-h[data-v-b340bd46],
.dialog-line-v[data-v-b340bd46] {
  position: absolute;
  background: #00d9ff;
}
.dialog-line-h[data-v-b340bd46] {
  left: 0;
  width: 100%;
  height: 1px;
}
.dialog-line-v[data-v-b340bd46] {
  top: 0;
  height: 100%;
  width: 1px;
}

/* Угловые маркеры */
.dialog-corners[data-v-b340bd46] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}
.corner[data-v-b340bd46] {
  position: absolute;
  width: 20px;
  height: 20px;
  border: 2px solid #00d9ff;
  opacity: 0.3;
}
.corner-tl[data-v-b340bd46] {
  top: 10px;
  left: 10px;
  border-right: none;
  border-bottom: none;
}
.corner-tr[data-v-b340bd46] {
  top: 10px;
  right: 10px;
  border-left: none;
  border-bottom: none;
}
.corner-bl[data-v-b340bd46] {
  bottom: 10px;
  left: 10px;
  border-right: none;
  border-top: none;
}
.corner-br[data-v-b340bd46] {
  bottom: 10px;
  right: 10px;
  border-left: none;
  border-top: none;
}

/* Фиксированный заголовок */
.dialog-header-fixed[data-v-b340bd46] {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(0, 217, 255, 0.1);
  background: inherit;
  flex-shrink: 0;
}
.header-content[data-v-b340bd46] {
  display: flex;
  align-items: center;
  gap: 16px;
}
.header-icon[data-v-b340bd46] {
  animation: float-b340bd46 3s infinite ease-in-out;
}
.header-titles[data-v-b340bd46] {
  display: flex;
  flex-direction: column;
}
.header-titles .text-h6[data-v-b340bd46] {
  color: #00d9ff;
  letter-spacing: 1px;
  font-size: 1.2rem;
  margin: 0;
  line-height: 1.3;
}
.header-titles .text-caption[data-v-b340bd46] {
  font-size: 0.85rem;
  line-height: 1.2;
}

/* Область прокрутки */
.dialog-scroll-area[data-v-b340bd46] {
  position: relative;
  z-index: 2;
  flex: 1;
  height: 100%;
  width: 100%;
}
.dialog-content[data-v-b340bd46] {
  padding: 20px 24px 24px;
}

/* Форма */
.form-fields[data-v-b340bd46] {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.field-wrapper[data-v-b340bd46] {
  position: relative;
}

/* Кастомные инпуты */
.custom-input[data-v-b340bd46] .q-field__control {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(0, 217, 255, 0.2);
  border-radius: 8px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  min-height: 48px;
}
.custom-input[data-v-b340bd46] .q-field__control:hover {
  border-color: #00d9ff;
  background: rgba(0, 217, 255, 0.02);
}
.custom-input[data-v-b340bd46] .q-field__control:focus-within {
  border-color: #00d9ff;
  box-shadow: 0 0 20px rgba(0, 217, 255, 0.1);
}
.custom-input.dark[data-v-b340bd46] .q-field__control {
  background: rgba(0, 0, 0, 0.3);
  border-color: rgba(0, 217, 255, 0.3);
}
.custom-input[data-v-b340bd46] .q-field__label {
  color: rgba(0, 0, 0, 0.6);
  font-size: 14px;
}
.custom-input.dark[data-v-b340bd46] .q-field__label {
  color: rgba(255, 255, 255, 0.6);
}

/* Для textarea */
.custom-input[data-v-b340bd46] .q-field__native {
  min-height: 40px;
}

/* Чекбокс */
.checkbox-wrapper[data-v-b340bd46] {
  margin-top: 8px;
}
.custom-checkbox[data-v-b340bd46] .q-checkbox__bg {
  border-color: #00d9ff;
  border-radius: 4px;
  transition: all 0.3s ease;
  width: 18px;
  height: 18px;
}
.custom-checkbox[data-v-b340bd46] .q-checkbox__bg:hover {
  border-color: #00d9ff;
  box-shadow: 0 0 10px rgba(0, 217, 255, 0.3);
}
.custom-checkbox[data-v-b340bd46] .q-checkbox__label {
  font-size: 14px;
  line-height: 1.3;
}

/* Кнопка закрытия */
.close-btn[data-v-b340bd46] {
  transition: all 0.3s ease;
  color: #00d9ff;
  flex-shrink: 0;
}
.close-btn[data-v-b340bd46]:hover {
  transform: rotate(90deg) scale(1.1);
  background: rgba(0, 217, 255, 0.1);
}

/* Кнопка отправки */
.submit-btn[data-v-b340bd46] {
  position: relative;
  overflow: hidden;
  background: transparent !important;
  border: 1px solid #00d9ff;
  color: #00d9ff;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  height: 48px;
  font-size: 16px;
}
.submit-btn[data-v-b340bd46]::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(0, 217, 255, 0.1);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}
.submit-btn[data-v-b340bd46]:hover::before {
  width: 300px;
  height: 300px;
}
.submit-btn[data-v-b340bd46]:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 217, 255, 0.2);
}

/* Декоративные элементы */
.dialog-decoration[data-v-b340bd46] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}
.decoration-dot[data-v-b340bd46] {
  position: absolute;
  width: 4px;
  height: 4px;
  background: #00d9ff;
  border-radius: 50%;
  opacity: 0.2;
}
.dot-1[data-v-b340bd46] {
  top: 20%;
  right: 15%;
}
.dot-2[data-v-b340bd46] {
  bottom: 30%;
  left: 10%;
}
.dot-3[data-v-b340bd46] {
  top: 40%;
  left: 20%;
}

/* Стили для ошибок валидации */
.text-negative[data-v-b340bd46] {
  color: #ff4444;
  font-size: 0.8rem;
  margin-top: 4px;
  animation: slideUp-b340bd46 0.3s ease;
}

/* Стили для инпута с ошибкой */
.custom-input[data-v-b340bd46] .q-field--error .q-field__control {
  border-color: #ff4444;
}
.custom-input[data-v-b340bd46] .q-field--error .q-field__control:focus-within {
  box-shadow: 0 0 20px rgba(255, 68, 68, 0.1);
}

/* Стили для кастомных уведомлений */
.notification[data-v-b340bd46] {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  color: white;
  font-size: 14px;
  animation: slideUp-b340bd46 0.3s ease;
}
.notification.success[data-v-b340bd46] {
  background-color: #4caf50;
}
.notification.error[data-v-b340bd46] {
  background-color: #f44336;
}
.notification.warning[data-v-b340bd46] {
  background-color: #ff9800;
}
.notification.info[data-v-b340bd46] {
  background-color: #2196f3;
}
.notification-content[data-v-b340bd46] {
  display: flex;
  align-items: center;
  gap: 12px;
}
.notification .q-icon[data-v-b340bd46] {
  color: white;
}
.notification .q-btn[data-v-b340bd46] {
  color: white;
  margin-left: 8px;
}

/* Стили для QScrollArea */
[data-v-b340bd46] .q-scrollarea {
  width: 100%;
  height: 100% !important;
}
[data-v-b340bd46] .q-scrollarea__container {
  width: 100% !important;
  height: 100% !important;
}
[data-v-b340bd46] .q-scrollarea__content {
  width: 100% !important;
}
[data-v-b340bd46] .q-scrollarea__thumb {
  background: rgba(0, 217, 255, 0.3);
  opacity: 0.5;
  width: 4px !important;
}
[data-v-b340bd46] .q-scrollarea__thumb:hover {
  opacity: 1;
}

/* Анимации */
@keyframes slideUp-b340bd46 {
from {
    opacity: 0;
    transform: translateY(20px);
}
to {
    opacity: 1;
    transform: translateY(0);
}
}
@keyframes slideDown-b340bd46 {
from {
    opacity: 0;
    transform: translateY(-20px);
}
to {
    opacity: 1;
    transform: translateY(0);
}
}
@keyframes scaleIn-b340bd46 {
from {
    opacity: 0;
    transform: scale(0.9);
}
to {
    opacity: 1;
    transform: scale(1);
}
}
@keyframes rotateIn-b340bd46 {
from {
    opacity: 0;
    transform: rotate(-180deg) scale(0.3);
}
to {
    opacity: 1;
    transform: rotate(0) scale(1);
}
}
@keyframes float-b340bd46 {
0%, 100% {
    transform: translateY(0);
}
50% {
    transform: translateY(-5px);
}
}
@keyframes pulse-b340bd46 {
0%, 100% {
    opacity: 0.2;
    transform: scale(1);
}
50% {
    opacity: 0.5;
    transform: scale(1.5);
}
}

/* Классы анимаций */
.animate-grid-line[data-v-b340bd46] {
  opacity: 0;
  animation: scaleIn-b340bd46 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.animate-marker[data-v-b340bd46] {
  opacity: 0;
  animation: rotateIn-b340bd46 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.animate-slide-down[data-v-b340bd46] {
  opacity: 0;
  animation: slideDown-b340bd46 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.animate-slide-up[data-v-b340bd46] {
  opacity: 0;
  animation: slideUp-b340bd46 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.animate-scale[data-v-b340bd46] {
  opacity: 0;
  animation: scaleIn-b340bd46 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.animate-rotate[data-v-b340bd46] {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.animate-pulse[data-v-b340bd46] {
  animation: pulse-b340bd46 2s infinite ease-in-out;
}
.fade-enter-active[data-v-b340bd46],
.fade-leave-active[data-v-b340bd46] {
  transition: opacity 0.3s ease;
}
.fade-enter-from[data-v-b340bd46],
.fade-leave-to[data-v-b340bd46] {
  opacity: 0;
}

/* Уменьшение анимации для пользователей с настройками */
@media (prefers-reduced-motion: reduce) {
[data-v-b340bd46] {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
}
}

/* Мобильная адаптация */
@media (max-width: 600px) {
.email-dialog[data-v-b340bd46] {
    max-width: 100vw;
    width: 100%;
    height: 100vh;
    max-height: 100vh;
    border-radius: 0;
}
.dialog-header-fixed[data-v-b340bd46] {
    padding: 16px 20px;
}
.dialog-content[data-v-b340bd46] {
    padding: 16px 20px 20px;
}
.header-content[data-v-b340bd46] {
    gap: 12px;
}
.header-icon[data-v-b340bd46] {
    font-size: 28px;
}
.header-titles .text-h6[data-v-b340bd46] {
    font-size: 1.1rem;
}
.header-titles .text-caption[data-v-b340bd46] {
    font-size: 0.8rem;
}
.form-fields[data-v-b340bd46] {
    gap: 16px;
}
.custom-input[data-v-b340bd46] .q-field__control {
    min-height: 44px;
}
.custom-input[data-v-b340bd46] .q-field__label {
    font-size: 13px;
}
.checkbox-wrapper[data-v-b340bd46] {
    margin-top: 4px;
}
.custom-checkbox[data-v-b340bd46] .q-checkbox__label {
    font-size: 13px;
}
.submit-btn[data-v-b340bd46] {
    height: 44px;
    font-size: 15px;
}
.decoration-dot[data-v-b340bd46] {
    display: none;
}
}
@media (max-width: 360px) {
.dialog-header-fixed[data-v-b340bd46] {
    padding: 12px 16px;
}
.dialog-content[data-v-b340bd46] {
    padding: 12px 16px 16px;
}
.header-content[data-v-b340bd46] {
    gap: 8px;
}
.header-icon[data-v-b340bd46] {
    font-size: 24px;
}
.header-titles .text-h6[data-v-b340bd46] {
    font-size: 1rem;
}
.form-fields[data-v-b340bd46] {
    gap: 12px;
}
.custom-input[data-v-b340bd46] .q-field__control {
    min-height: 40px;
}
}
