* {
  box-sizing: border-box;
}

html {
  font-size: 16px;
}

body {
  font-family: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background-color: #f8fafc;
  color: #1a1a1a;
  margin: 0;
  padding: 0;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.v-application {
  background-color: #f8fafc !important;
}

.v-field {
  transition: all 0.2s ease;
}
.v-field:hover {
  border-color: rgb(200.1739130435, 204.3913043478, 212.8260869565);
}
.v-field--focused {
  border-color: #1a237e !important;
  box-shadow: 0 0 0 2px rgba(26, 35, 126, 0.1);
}

.v-field__input::-moz-placeholder {
  color: #9ca3af;
  opacity: 1;
}

.v-field__input::placeholder {
  color: #9ca3af;
  opacity: 1;
}

.v-selection-control .v-label {
  opacity: 1;
  color: #1a1a1a;
}

.v-btn {
  transition: all 0.2s ease;
}
.v-btn:hover {
  transform: translateY(-1px);
}
.v-btn:active {
  transform: translateY(0);
}

.v-card {
  overflow: visible;
}

.v-snackbar .v-snackbar__content {
  font-weight: 500;
}

.v-container {
  max-width: 1400px;
}

@media (max-width: 960px) {
  .v-container {
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media (max-width: 600px) {
  .v-card-title {
    font-size: 1.25rem !important;
  }
  .submit-btn {
    height: 48px !important;
    font-size: 14px !important;
  }
}
.v-file-input .v-field__prepend-inner {
  padding-right: 0;
}

.v-field--disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.v-field--disabled .v-field__input {
  cursor: not-allowed;
}

.v-btn:focus-visible,
.v-field:focus-visible {
  outline: 2px solid #1a237e;
  outline-offset: 2px;
}

html {
  scroll-behavior: smooth;
}

::-moz-selection {
  background-color: rgba(26, 35, 126, 0.2);
  color: #1a1a1a;
}

::selection {
  background-color: rgba(26, 35, 126, 0.2);
  color: #1a1a1a;
}
