body {
  margin-top: 4rem;
}

.center-div {
  display: flex;
  justify-content: center;
  align-items: center;
}

.container {
  display: flex;
  flex-direction: column;
  justify-items: center;
  justify-self: stretch;
  flex-wrap: wrap;
  margin-bottom: 1rem;
  align-items: center;
  text-align: center;
}


@media (max-width: 599px) {
  .container {
    width: 80vw;
  }
}

@media (min-width: 600px) {
  .container {
    max-width: 600px;
  }
}

.header {
  margin-bottom: 20px;
}

.landing-logo {
  max-width: 20rem;
}

.prosthesis-image {
  /* width: 72%; */
}


.button {
  border: none;
  border-radius: 3rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
  width: 100%;
  max-width: 26rem;
  height: 2rem;
  margin: 1rem 0;
}

.button.primary {
  background-color: var(--primary-color);
  color: var(--secondary-color);
}

.button.primary.invert {
  color: var(--primary-color);
  background-color: var(--secondary-color);
}

.button.primary.invert:hover {
  color: white;
  background-color: var(--primary-color);
  box-shadow: inset 0px 0px 8px 0px rgba(0, 0, 0, .8);
}

.button.secondary {
  background-color: white;
  color: var(--primary-color);
  border: solid 1.5px var(--primary-color);
}

.button:hover {
  opacity: 0.9;
}


section {
  margin: 0.5rem 0;
  width: 100%;
}

.inputs {
  width: 80%;
  max-width: 20rem;
}

.button.language-flag {
  background-color: var(--secondary-color);
  border: solid 2px var(--primary-color);
  border-radius: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
  width: 5rem;
  height: 4rem;
  max-width: 26rem;
  margin: .3rem;
  min-width: 5rem;
}

.image-flag {
  width: 3rem;
  height: 2.31rem;
}

.align-left{
  text-align: left;
}

.main-section {
  position: relative;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.blue-form{
  background-color: #0018A8;
  border-radius: 20px;
  padding: 12px;
}

.f24 {
  font-size: 24px;
}

.container-horizontal {
  display: flex;
  flex-direction: row;
  justify-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  align-items: center;
  text-align: center;
  width: 100%;
}