@import url("https://fonts.googleapis.com/css2?family=Poppins&display=swap");

body {
  background-color: #f1f3fb;
  font-family: "Poppins", serif;
}

img {
  width: 100%;
}

.position-paper-card {
  max-width: 650px;
  flex-direction: column;
  padding: 0.75rem;
  border-radius: 0.5rem;
  margin: 2rem auto;
  background-color: #fff;
  box-shadow: 0 10px 20px 0 rgba(153, 153, 153, 0.25);
}

.position-paper-image {
  border-radius: 0.5rem;
  background-color: #1e1e1e;
  padding: 1rem;
}

.position-paper-information {
  text-align: center;
  font-size: 1.75rem;
  color: #ffffff;
  padding: 1rem;
  padding-left: 1.5rem;
}

h1,
h2 {
  margin: 0px;
}

h1 {
  font-size: 30px;
}

h2 {
  font-size: 20px;
}

.position-paper-form {
  padding: 1.5rem;
}

/* Credits for these BELOW codepen.io/havardob/pen/eYJPwdb */

.input {
  display: flex;
  flex-direction: column-reverse;
  position: relative;
  padding-top: 1.5rem;
}

.input+.input {
  margin-top: 1.25rem;
}

.input-label {
  color: #8597a3;
  position: absolute;
  top: 1.5rem;
  transition: 0.25s ease;
}

.input-field {
  border: 0;
  z-index: 1;
  background-color: transparent;
  border-bottom: 2px solid #eee;
  font: inherit;
  font-size: 1rem;
  padding: 0.25rem 0;
}

.input-field:focus,
.input-field:valid {
  outline: 0;
  border-bottom-color: #d35858;
}

.input-field:focus+.input-label,
.input-field:valid+.input-label {
  color: #d35858;
  transform: translateY(-1.5rem);
}

.action {
  margin-top: 2rem;
}

.action-button {
  font: inherit;
  font-size: 1.25rem;
  padding: 1em;
  width: 100%;
  font-weight: 500;
  background-color: #d35858;
  border-radius: 6px;
  color: #fff;
  border: 0;
}

.action-button:focus {
  outline: 0;
}

/* Credits for these ABOVE codepen.io/havardob/pen/eYJPwdb */

.position-paper-hints {
  color: #999;
  text-align: center;
  font-size: 15px;
}

.introduction {
  margin-bottom: 25px;
  text-align: justify;
}

#random {
  text-align: center;
  padding: 5px;
  background-color: #8597a3;
  color: #fff;
  border-radius: 6px;
}