.app-container {
  margin: 0 15%;
  padding: 0;
}

/* style header */
.v-toolbar__content {
  justify-content: space-between !important;
  padding: 0 15% !important;
  height: 80px !important;
}

.navigation {
  width: 35%;
  display: flex;
  justify-content: space-between;
}

.blurred-bar {
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px); /* Safari */

  background-color: rgba(var(--v-theme-surface), 0.6);

  transition:
    backdrop-filter .3s ease,
    background-color .3s ease,
    box-shadow .3s ease;
}

/* style links */
.text-link a {
  color: #bdbdbd;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.text-link a:hover,
.text-link a.router-link-exact-active {
  color: #00dc82;
}

/* style inputs */
.custom-text-field .v-field {
  border: 1px solid #6c83a6a1 !important;
  /* transition: border-width 0.1s ease, border-color 0.1s ease; */
}

/* Quando estiver com foco */
.custom-text-field .v-field.v-field--focused {
  border: 2px solid #77e4b6 !important; /* engrossa a borda */
}

/* Cor do texto digitado */
.custom-text-field .v-input__control input {
  color: #bdbdbd !important;
  caret-color: #00dc82 !important; /* cursor na cor verde */
}

/* Placeholder */
.custom-text-field .v-input__control input::placeholder {
  color: #bdbdbd !important;
}



/* style footer*/
.v-footer {
  border-top: 1px solid #00dc82 !important;
  background-color: #001e26cc !important;
  padding: 5% 15% !important;
}

.v-footer .v-row {
  width: 100%;
}

.v-footer .v-row div{
  min-height: 60px;
}

.newsletter-input {
  margin-right: 10px;
  padding: 8px 8px;
  height: 36px;
  border: 1px solid #00dc82;
  border-radius: 30px;
  color: #bdbdbd;
}

.v-input.v-input--error .v-field__outline {
  --v-field-border-opacity: 1;
  border: 2px solid #00ff97;
}
.v-field--error:not(.v-field--disabled) .v-field__outline {
  color: transparent !important;
}
.v-field--error:not(.v-field--disabled) .v-field__outline {
  color: transparent !important;
}
.v-input--error:not(.v-input--disabled) .v-input__details > .v-icon, 
.v-input--error:not(.v-input--disabled) .v-input__details .v-messages, 
.v-input--error:not(.v-input--disabled) .v-input__prepend > .v-icon, 
.v-input--error:not(.v-input--disabled) .v-input__prepend .v-messages, 
.v-input--error:not(.v-input--disabled) .v-input__append > .v-icon, 
.v-input--error:not(.v-input--disabled) .v-input__append .v-messages {
  color: #00dc82 !important;
} 

@media (max-width: 365.98px) {
  .app-container {
    margin: 0;
    padding: 0;
  }
}

/* @media (max-width: 765.98px) {
  .app-container {
    margin: 0 5%;
    padding: 0;
  }
} */

@media (max-width: 1716.98px) {
  .app-container {
    margin: 0 10%;
    padding: 0;
  }

  .v-toolbar__content {
    padding: 0 10% !important;
  }
}

@media (max-width: 1506.98px) {
  .app-container {
    margin: 0 5%;
    padding: 0;
  }

  .v-toolbar__content {
    padding: 0 5% !important;
  }
}

@media (max-width: 1465.98px) {
  .navigation {
    width: 50%;
  }
}