body {
  background-color: #212223;
  font-family: -apple-system, BlinkMacSystemFont, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: white;
  font-size: medium;
  font-weight: 700;
}

input {
  font-family: -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: bold;
  background-color: #8e8e8ece;
  border: 2px solid #0d0d0d;
  width: 250px;
  height: 30px;
  padding: 5px;
  box-shadow: 0.5em 0.5em 3px rgb(0 0 0 / 50%);
}

input::placeholder {
  opacity: 0.5;
  color: black;
}

li {
  color: orange;
  margin: 10px 0;
}

h1 {
  color: orange;
  text-shadow: 0.5em 0.5em 3px rgb(0 0 0 / 50%);
  font-size: 52px;
}

form {
  padding: 1em;
}

.app {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  flex-direction: column;
  min-height: 100vh;
}

.image-LP {
  width: 70%;
  height: 60%;
  box-shadow: 0.5em 0.5em 3px rgb(0 0 0 / 50%);
  border: 1px outset orange;
}

.column-title {
  background-color: #2e3a45;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  border: 2px solid #0d0d0d;
  padding: 0.2em;
  top: 0px;
  align-items: center;
}

.container-signup {
  margin-top: 20px;
  background-color: #3c3c3c;
  width: 500px;
  border: 0.1px solid orange;
  overflow-x: hidden;
  -ms-overflow-style: none;
  scrollbar-width: none;
  box-shadow: 0.5em 0.5em 3px rgb(0 0 0 / 50%);
}

.orange-button {
  background-color: orange;
  border: 1px outset orange;
  color: black;
  box-shadow: 0.5em 0.5em 3px rgb(0 0 0 / 50%);
  padding: 0 0.5em;
  font-weight: bolder;
  cursor: pointer;
  font-family: inherit;
}

.orange-button:hover {
  background-color: orange(0, 0, 255, 0.578);
  box-shadow: 0 0px rgb(0 0 0 / 50%);
  transform: translateY(1px);
  transition: all 0.2s ease-in;
}

.container-main {
  display: flex;
  flex-direction: row;
}

.content-box {
  display: flex;
  padding: 10px;
  flex-direction: column;
  align-items: center;
}

.form-row {
  display: flex;
  flex-direction: row;
}

@media screen and (max-width: 450px) {
  .container-signup {
    width: 100%;
  }
  .image-LP {
    width: 100%;
  }
}
