body {
  background-color: #FFFFFF;
  padding: 0;
  margin: 0;
  font-family: 'Inter', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
}

h1 {
  color: var(--brand-color-dark-blue);
  font-weight: 700;
  font-size: 2.8rem;
}

p {
  color: var(--gray-40);
  font-weight: 400;
  font-size: 1.8rem;
}

.content.voltar-ao-topo, .container {
  padding: 0 !important;
  margin: 0 !important;
}

.main-content{
  width: 100vw;
  height: 100vh;
}

.main-content:not(.slide-left) {
  animation: slide-right .5s ease;
}

.main-content.slide-left {
  animation: slide-left .5s ease;
}

.main-content.without-animation {
  animation: none;
}

@keyframes slide-right {
  0% {
    opacity: 0;
    transform: translateX(-100%);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slide-left {
  0% {
    opacity: 0;
    transform: translateX(100%);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.left-form, .right{
  min-height: 100vh;
}

.left-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.6rem;
}

.left-form .alert {
  position: absolute;
  border: none;
  width: 60%;
  top: 2.4rem;
  animation: slide-down 0.5s ease;
}

@keyframes slide-down {
  0% {
    opacity: 0;
    transform: translateY(-100%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.left-form .form-header {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 1.6rem;
}

.left-form .form-container {
  width:60%;
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}

.left-form .form-container label{
  color: var(--brand-color-dark-blue);
  font-size: 1.4rem;
  font-weight: 600;
}

.right {
  background: var(--brand-color-blue);

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4rem;
}

.right img{
  max-width: 50rem;
}

.right img.img-large{
  max-width: 60rem;
  position: relative;
 margin-left: 4rem;
}

/* Estilização do Modal */

#modal-validation{
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-header, .modal-footer {
  border: none;
}

.modal-content {
  border: none;
  border-radius: 1.2rem;
  padding: 2.4rem;
  box-shadow: none;
}

.modal-body {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.4rem;
  flex-direction: column;
}

.modal-body .main-message {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.6rem;
}

.modal-body .main-message h1, .modal-body .main-message p {
  text-align: center;
}

.modal-body .main-message p {
  max-width: 70%;
}

.modal-body .main-message img { 
  width: 25%;
}

@media only screen and (min-width: 300px) and (max-width: 940px) {
  .right {
    display: none;
  }
  .left-form .form-container {
    width: 80%;
  }
}

@media only screen and (max-width: 600px) {
  .modal-body .main-message p {
    max-width: 100%;
  }
  .left-form .alert {
    width: 80%;
  }
}