* {
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  padding: 0px;
  margin: 0px;
  text-decoration: none;
}

a:link,
a:visited {
  color: grey;
  padding: 3px;
}

.flex-wrapper {
  display: flex;
  height: 100vh;
  width: 100%;
}

.description-text {
  height: 35vh;
  display: flex;
  flex-direction: column;
  background-color: darkgrey;
  border-bottom: 4px solid black;
  justify-content: center;
}

.column-box {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.image-container {
  width: fit-content;
  height: fit-content;
  position: relative;
}

.img-text {
  position: absolute;
  color: aliceblue;
  width: 100%;
  top: 30%;
  height: 10vh;
  display: flex;
  background-color: rgba(0, 0, 0, 0.6);
  align-items: center;
  justify-content: center;
}

.img-text > p {
  padding: 10px;
  font-size: 50px;
  margin-right: auto;
}

.img-text > img {
  height: 70%;
  padding: 30px;
  margin-left: auto;
}

.image-container > .credit-box {
  position: absolute;
  bottom: 15px;
  width: 100%;
  text-align: center;
  color: white;
}

.description-text > p:nth-child(1) {
  height: 100px;
  width: 80%;
  margin-top: auto;
  margin-left: 20px;
  padding: 20px;
  font-size: 1.5rem;
}

.description-text > p:nth-child(2) {
  height: 50px;
  width: 80%;
  margin-left: 20px;
  padding: 20px;
  font-size: 1.5rem;
}

.form-box {
  padding: 20px;
  box-shadow: 2px 2px 8px grey;
}

.form-box > form div > input {
  margin: 10px;
  display: block;
  width: 35%;
  padding: 10px;
  border-radius: 5px;
}

.form-box > form > div {
  display: flex;
  width: 100%;
  margin-top: 15px;
}

.form-box > form > div > div {
  width: 100%;
}

.form-box > form > div > div label {
  margin-left: 10px;
}

.form-box > form > div > div input {
  border: 3px solid black;
  width: 90%;
}

.form-box > form > div > div input:focus {
  border: 3px solid green;
}

.form-box > form > div > div input:invalid:focus {
  border: 3px solid red;
}

.column-box > div > .submit_btn {
  margin-top: 5vh;
  width: 10vw;
  padding: 12px;
  margin-left: 30px;
  font-size: 15px;
  font-weight: bold;
  border: 3px solid black;
  border-radius: 4px;
}

.column-box > div > .submit_btn:hover {
  border: 4px solid black;
  background-color: darkgray;
}

.column-box > .account_exists > p {
  font-size: 20px;
  font-weight: bold;
  margin-top: 5vh;
  margin-left: 30px;
}

.confirmText {
  font-size: 0.8rem;
  margin-left: 10px;
  color: red;
}

.backImg > img {
  height: 100vh;
}