 .baseFrame {
  display: grid;
  grid-template-columns: 270px 270px 1fr;
  width: 1280px;
  height: 450px;
  background-color: lightgray;
 }

 .informationField {
  display: grid;
  grid-template-columns: 240px 710px;
  column-gap: 15px;

  width: 810px;
  height: 70px;
  margin-left: 100px;
  margin-top: 15px;

  border-radius: 50px;
  background-color: rgb(199, 195, 237);
  /* align-items: center; */
 }

 .information {
  width: 240px;
  height: 50px;
  border-radius: 50px;
  background-color: #2677F0 ;

  margin-top:8px;
  margin-left: 15px;

  font-weight:3px;
  font-size: 25px;
  text-align:center;
 }
 .information-font {
  font-family: 'Font Awesome 5 Brands';
  font-size: 25px;
  font-weight: 50px;
  margin-left: 20px;
  margin-top: 15px;
  border: 0;
  border-radius: 8px;
}

.confirmButton {
  width: 240px;
  height: 60px;
  border-radius: 50px;
  background-color: orchid ;
  /* margin-top: 15px; */
  margin-left: 15px;
  margin-top: 15px;

  font-weight:3px;
  font-size: 25px;
  text-align:center;
  border: 0;

  cursor: pointer;
 }
 .confirmButton:hover {
  background-color: #2677F0;
  cursor: pointer;
 }