* {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  height: 110%;
  text-align: center;
  font-family: sans-serif;
  font-weight: bold;
  color: black;
  margin: 0;
  background: linear-gradient(to right, #25c481, #ffff47);
}

h1 {
  margin: 0;
  padding: 5px 0;
  background-color: darkslateblue;
  text-shadow: 2px 1px rgb(99, 235, 42);
}

hr {
  border-top: 2px solid;
  border-bottom: none;
  border-color: rgb(0, 21, 31);
  margin-top: 0;
}

label {
  font-size: 1.2rem;
}

.container {
  text-align: center;
  width: 40%;
  height: 475px;
  /* max-height: 420px;*/
  padding-top: 30px;
  margin: 3% 15% 0 5%;
  box-shadow: 0 0 15px black;
  background-color: #fa903f;
  /*  background-image: linear-gradient(to right, #4040c6, #007ff9, #00aae5, #00cca1, #6ee356 );*/
  border-radius: 5px;
}

.box {
  display: flex;
}

.f1 {
  display: flex;
  justify-content: space-between;
  padding: 20px;
}

.f2 {
  display: flex;
  padding: 20px;
}

.c {
  display: flex;
  margin-left: 15%;
}

.c1 {
  margin: 6px;
  margin-top: 0;
}

.display {
  text-align: left;
  display: flex;
  flex-direction: column;
  height: 500px;
  width: 50%;
}

.div1 {
  display: flex;
  flex-direction: column;
  padding-left: 10px;
}

.div1 div {
  padding: 5px;
}

.vl {
  border-left: 5px solid darkslateblue;
  height: 550px;
  position: absolute;
  left: 48%;
  margin-top: 25px;
}

.display h2 {
  margin-left: 15%;
  text-shadow: 2.3px 1px rgb(108, 100, 105);
  font-size: 32px;
}

.d {
  margin-bottom: 10px;
  width: 70%;
  height: 200px;
  border: 0.5px solid rgb(0, 21, 31);
  box-shadow: 0 0 15px black;
  background-color: darkslateblue;
  color: #fa903f;
  border-radius: 5px;
  display: flex;
  justify-content: space-between;
}

.f1 input {
  background-color: rgb(209, 209, 209);
  border-radius: 5px;
  font-size: 17px;
  height: 25px;
}

.f1 input::placeholder {
  font-weight: bold;
  color: rgb(118, 118, 118);
  background-color: rgb(209, 209, 209);
}

.in {
  width: 70%;
}

#img {
  height: fit-content;
  font-weight: bold;
}

.submit {
  background-color: darkslateblue;
  color: #f5fdfa;
  font-weight: bold;
  font-size: 1rem;
  width: 100px;
  height: 25px;
  border: 0;
  border-radius: 10px;
  box-shadow: 0 0 5px;
  cursor: pointer;
}

.submit:hover {
  cursor: pointer;
  transform: scale(1.5);
  transition: 0.5s;
}

.img {
  width: 150px;
  max-height: 120px;
  border-radius: 20px;
  padding: 5px;
  padding-right: 10px;
  align-self: center;
}

@media only screen and(max-width:730px) {
  .box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .f1 {
    display: flex;
    flex-direction: column;
  }
  .f2 {
    display: flex;
    flex-direction: column;
    padding: 23px;
  }
  .in {
    width: 100%;
  }
  .display {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .display h2 {
    margin-left: 0;
  }
  .c {
    display: flex;
    justify-content: space-around;
    margin-left: 0;
  }
  .submit {
    margin-bottom: 10px;
  }
}

@media only screen and(max-width:455px) {
  .d {
    flex-direction: column;
  }
  .img {
    align-self: center;
  }
}
