*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins';
}

body {
  background-color: #434c5e;
}

.side {
  width: 50vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #3b4252;
  position: absolute;
}

.logo {
  width: 100%;
}

.otherSide {
  position: absolute;
  right: 0;
  width: 50vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #d8dee9;
}

.title {
  font-size: 3rem;
  margin-top: 280px;
  margin-bottom: 50px;
  position: relative;
}

.learnMoreBtn {
  width: 150px;
  height: 50px;
  background: #d8dee9;
  border: none;
  border-radius: 5px;
  color: #434c5e;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

.learnMoreBtn:hover {
  background-color: rgba(216, 222, 233, 0.5);
}

.pfpContainer {
  width: 50vw;
  height: 10vh;
  display: flex;
  justify-content: space-evenly;
  position: absolute;
  top: 180px;
}

.pfp {
  width: 150px;
  height: 150px;
  border-radius: 10px;
  border: 5px solid #88c0d0;
  position: relative;
}

header {
  min-width: 50vw;
  height: 5em;
  display: flex;
  flex-direction: row-reverse;
  position: absolute;
  top: 0;
}

header ul {
  position: relative;
  list-style: none;
  display: inline-flex;
  gap: 50px;
  font-size: 1.3rem;
  margin-right: 100px;
  margin-top: 50px;
}

header a {
  color: #d8dee9;
  text-decoration: none;
}

.aboutUS {
  position: absolute;
  top: 100px;
  left: 90px;
}

.aboutUSContent {
  width: 90%;
  height: 50%;
  bottom: 0;
  position: relative;
  z-index: -1;
  left: 45px;
  font-size: 1.5rem;
}

form {
  width: 90%;
  min-height: 50%;
  bottom: 0;
  position: relative;
  margin-right: 45px;
  margin-left: 45px;
  font-size: 1.5rem;
  background-color: #d8dee9;
  display: flex;
  flex-direction: column;
  padding: 30px;
  border-radius: 50px;
  border: 10px solid rgba(0, 0, 0, 0.1);
}

.label {
  color: #3b4252;
}

.inputs {
  width: 50%;
  height: 30px;
  border: 1px solid #3b4252;
  background-color: rgba(0, 0, 0, 0.05);
  border-radius: 10px;
  margin-top: 1em;
  margin-bottom: 3em;
  padding: 10px;
  outline: none;
}

.write {
  resize: none;
  border-radius: 10px;
  border: 3px solid rgba(0, 0, 0, 0.3);
  background-color: rgba(0, 0, 0, 0.05);
  height: 10em;
  padding: 1rem;
  outline: none;
}

.formLogo {
  width: 200px;
  height: 200px;
  position: absolute;
  right: 0;
  margin-right: 80px;
  margin-top: 80px;
  border-radius: 10px;
  border: 5px solid #88c0d0;
}

.submit {
  width: 100px;
  height: 50px;
  background: none;
  border: 3px solid rgba(0, 0, 0, 0.3);
  margin-top: 42px;
  border-radius: 1rem;
  color: #3b4252;
}

.table {
  width: 50%;
  height: 50%;
  background-color: rgba(0, 0, 0, 0.5);
}

.tableRows {
  display: flex;
  justify-content: space-evenly;
  border: 5px solid rgba(255, 255, 255, 0.5);
}

.data-rows {
  border: 5px solid rgba(255, 255, 255, 0.5);
}
