body {
  background-color: white;
}

.contact-form {
  overflow: none;
}

.vertical-line {
  width: 2px;
  height: 48px;
  background-color: var(--color-secondary);
}

.contact-form fieldset {
  overflow: hidden;
}

.contact-form fieldset legend {
  color: var(--color-secondary);
}

.form-control {
  border-radius: 0;
  background-color: white;
  color: var(--color-secondary);
}

.form-control:focus {
  color: var(--color-theme-red);
  border-color: var(--color-theme-red);
  box-shadow: var(--shadow-theme-red);
  border-width: 2px;
  outline: none;
}

.form-control:focus-within {
  border-color: var(--color-theme-red);
  border-width: 2px;
  outline: none;
}

.form-floating {
  text-align: center;
}

.form-floating > label {
  color: var(--form-main-color);
}

.contact-form-action {
  --button-color: rgb(236, 102, 84);
  padding: var(--base-spacing);
  width: fit-content;
  display: flex;
  gap: 0.5rem;
  align-items: center;
  margin: var(--base-spacing) auto;
  padding: 1rem;
  font-size: 1rem;
  border: 3px solid var(--button-color);
  color: var(--button-color);
  background-color: white;
  transition: all 0.3s ease-in-out;
}

.contact-form-action:hover,
.contact-form-action:focus {
  color: white;
  background-color: var(--button-color);
  border: 3px solid var(--button-color);
}

.contact-form-action:hover .shake-icon {
  animation: tilt-shaking 0.5s ease-in-out 0s infinite normal forwards;
}

.contact-form-action:disabled {
  border: 3px solid var(--button-color);
  color: var(--button-color);
  background-color: white;
  cursor: not-allowed;
}

/* *-xl Bootstrap breakpoint */
@media screen and (max-width: 1199px) {
}

/* *-lg Bootstrap breakpoint */
@media (max-width: 991px) {
  .contact-form fieldset {
    width: 70%;
  }
}

/* *-md Bootstrap breakpoint */
@media screen and (max-width: 767px) {
  .contact-form fieldset {
    width: 80%;
  }
}

/* *-sm Bootstrap breakpoint */
@media screen and (max-width: 575px) {
}

/* xs devices breakpoint */
@media screen and (max-width: 389px) {
}

@keyframes tilt-shaking {
  0% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(8deg);
  }
  50% {
    transform: rotate(0eg);
  }
  75% {
    transform: rotate(-8deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
