﻿header.app-bar {
  background-color: transparent;
  height: 3.5rem;
  color: var(--text-invert-primary);
  align-items: center;
  display: none;
}
@media screen and (min-width: 576px) {
  header.app-bar {
    background-color: var(--surface-invert);
    display: flex;
  }
}
header.app-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header.app-bar .container a {
  display: block;
}
header.app-bar .container .phone-number {
  padding: 0.5rem 1rem;
  border-radius: 0.25rem;
  border: 1px solid var(--border-light, #FFF);
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
header.app-bar .container .phone-number i {
  font-size: 1rem;
  width: 1rem;
  height: 1rem;
}
header.app-bar .container .phone-number a {
  font-size: 1rem;
  font-weight: 600;
  line-height: normal;
  text-align: left;
  color: inherit;
}

.dealer-form-page {
  position: relative;
  min-height: calc(100vh - 3.5rem - 200px);
}
@media screen and (min-width: 1280px) {
  .dealer-form-page {
    min-height: calc(100vh - 3.5rem - 143px);
  }
}
@media screen and (min-width: 768px) {
  .dealer-form-page .dealer-form-text {
    color: var(--rz-base-800);
  }
}
.dealer-form-page .background-image {
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
  background-color: lightgray;
  object-position: 50% 75%;
}
.dealer-form-page .background-image.light {
  display: block;
}
body.dark .dealer-form-page .background-image.light {
  display: none;
}
.dealer-form-page .background-image.dark {
  display: none;
}
body.dark .dealer-form-page .background-image.dark {
  display: block;
}
@media screen and (min-width: 576px) {
  .dealer-form-page .background-image {
    object-position: 50% 50%;
  }
}
@media screen and (min-width: 768px) {
  .dealer-form-page .background-image {
    object-fit: none;
    object-position: 37% 15%;
  }
}
@media screen and (min-width: 1024px) {
  .dealer-form-page .background-image {
    object-position: 37% 53%;
  }
}
@media screen and (min-width: 1280px) {
  .dealer-form-page .background-image {
    object-fit: cover;
  }
}
.dealer-form-page .dealer-form-container {
  padding-top: 1.5rem;
  gap: 1.5rem;
}
.dealer-form-page .dealer-form-container h1 {
  margin-bottom: 1.5rem;
}
@media screen and (min-width: 768px) {
  .dealer-form-page .dealer-form-container {
    padding-top: 3rem;
  }
}
@media screen and (min-width: 1280px) {
  .dealer-form-page .dealer-form-container {
    padding-top: 5rem;
  }
}
.dealer-form-page .dealer-form-container .dealer-form-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
}
.dealer-form-page .dealer-form-container .dealer-form-content .dealer-form-text {
  margin-bottom: 1rem;
}
@media screen and (min-width: 1024px) {
  .dealer-form-page .dealer-form-container .dealer-form-content {
    flex-direction: row !important;
  }
}
.dealer-form-page .dealer-form-container .dealer-form-content .dealer-form-description {
  gap: 1rem;
  max-width: 720px;
}
@media screen and (min-width: 1920px) {
  .dealer-form-page .dealer-form-container .dealer-form-content .dealer-form-description {
    max-width: 793px;
  }
}
.dealer-form-page .dealer-form-container .dealer-form-content .dealer-form {
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0px 16px 16px 0px rgba(16, 18, 35, 0.1);
  backdrop-filter: blur(40px);
  padding: 1.5rem;
  min-width: 100%;
  margin-bottom: 22rem;
  background: rgba(255, 255, 255, 0.7);
  border: none;
}
body.dark .dealer-form-page .dealer-form-container .dealer-form-content .dealer-form {
  background: #282A3A;
}
body.dark .dealer-form-page .dealer-form-container .dealer-form-content .dealer-form {
  border: 1px solid #585D6B;
}
@media screen and (min-width: 576px) {
  .dealer-form-page .dealer-form-container .dealer-form-content .dealer-form {
    margin-bottom: 10rem;
  }
}
@media screen and (min-width: 768px) {
  .dealer-form-page .dealer-form-container .dealer-form-content .dealer-form {
    padding: 3rem;
    min-width: 360px;
    max-width: 405px;
    margin-bottom: 8rem;
    align-self: end;
  }
}
.dealer-form-page .dealer-form-container .dealer-form-content .dealer-form .form-control {
  background: transparent;
  border-radius: var(--radius-radius-minimal, 4px);
  border: 1px solid #9496A1;
  color: #101223;
}
body.dark .dealer-form-page .dealer-form-container .dealer-form-content .dealer-form .form-control {
  border: 1px solid #9496A1;
}
body.dark .dealer-form-page .dealer-form-container .dealer-form-content .dealer-form .form-control {
  color: #F3F4F8;
}
.dealer-form-page .dealer-form-container .dealer-form-content .dealer-form .form-control::placeholder {
  color: #101223;
}
body.dark .dealer-form-page .dealer-form-container .dealer-form-content .dealer-form .form-control::placeholder {
  color: #F3F4F8;
}
.dealer-form-page .dealer-form-container .dealer-form-content .dealer-form .form-control:focus, .dealer-form-page .dealer-form-container .dealer-form-content .dealer-form .form-control:hover {
  border: 1px solid #9496A1;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}
body.dark .dealer-form-page .dealer-form-container .dealer-form-content .dealer-form .form-control:focus, body.dark .dealer-form-page .dealer-form-container .dealer-form-content .dealer-form .form-control:hover {
  border: 1px solid #71D1F2;
}
body.dark .dealer-form-page .dealer-form-container .dealer-form-content .dealer-form .form-control:focus, body.dark .dealer-form-page .dealer-form-container .dealer-form-content .dealer-form .form-control:hover {
  box-shadow: 0 0 1px 1px #101223, 0 0 0 3px rgba(36, 191, 238, 0.40);
}
.dealer-form-page .dealer-form-container .dealer-form-content .dealer-form .dealer-form-fields {
  gap: 0.5rem;
  display: flex;
  flex-direction: column;
}
.dealer-form-page .dealer-form-container .dealer-form-content .dealer-form .form-row {
  display: flex;
  gap: 1.5rem;
  padding: 0 0.25rem;
}
.dealer-form-page .dealer-form-container .dealer-form-content .dealer-form .form-row div:first-child {
  width: calc(66% - 0.75rem);
}
.dealer-form-page .dealer-form-container .dealer-form-content .dealer-form .form-row div:nth-child(2) {
  flex: 1;
}
.dealer-form-page .dealer-form-container .dealer-form-content .dealer-form h6 {
  text-align: center;
  margin-bottom: 1.5rem;
  color: #101223;
}
body.dark .dealer-form-page .dealer-form-container .dealer-form-content .dealer-form h6 {
  color: #F3F4F8;
}
.dealer-form-page .dealer-form-container .dealer-form-content .dealer-form .rz-form-field-content {
  margin-top: 0;
}
.dealer-form-page .dealer-form-container .dealer-form-content .dealer-form .rz-form-field-content input {
  width: 100%;
}
.dealer-form-page .dealer-form-container .dealer-form-content .dealer-form .rz-form-field:not(.rz-variant-text):not(.rz-state-disabled) .rz-form-field-content {
  border-color: #9496A1;
}
