.welcome {
  margin-left: 1rem;
  margin-right: 1rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
  justify-content: center;
  min-height: 85vh;
}

.welcome-footer {
  height: 7vh;
  background-color: #1A3674;
}

.welcome-header {
  height: 8vh;
  background-color: #D1E3DD;
}

.welcome-main {
  min-height: 85vh;
}

.welcome__h1 {
  font-family: "Nunito", "Inter";
  color: #1A3674;
  font-weight: 600;
  font-size: 3rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.welcome__h2 {
  font-family: "Inter", "Nunito";
  color: #1A3674;
  font-weight: 500;
  margin-bottom: 5rem;
}

.welcome__div {
  background-color: #9D00FF;
  padding: 20px;
  display: inline;
  border-radius: 50px;
  transition: all 0.5s;
}

.welcome__div:hover {
  transform: scale(1.25);
  transition: all 0.5s;
}

.welcome__div::after {
  content: "Get Started";
  font-weight: 800;
  font-family: "Nunito", "Inter";
  color: #D1E3DD;
}

.register-main {
  background-color: #1A3674;
  height: 74vh;
}

.register-footer {
  background-color: #D1E3DD;
  height: 10vh;
}

.register-header {
  background-color: #1A3674;
  height: 16vh;
}

.input-fields {
  display: grid;
  grid-template-rows: repeat(5, 1fr);
  margin-left: 6rem;
  margin-right: 6rem;
  height: 25rem;
  row-gap: 1.7rem;
}

.input-fields--signin {
  height: 30rem;
}

.input-fields__h1 {
  font-weight: 800;
  font-family: "Nunito", "Inter";
  color: #D1E3DD;
  font-size: 1.8rem;
}

.input-fields__input {
  background-color: #D1E3DD;
  border-radius: 50px;
  font-family: "Nunito", "Inter";
  font-weight: 600;
  font-size: 1.4rem;
  padding-left: 2rem;
  color: #1A3674;
}

.input-fields__div--signup {
  background-color: #9D00FF;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s;
  cursor: pointer;
}

.input-fields__div--signin {
  background-color: #9D00FF;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s;
  cursor: pointer;
}

.input-fields__div--signup:hover {
  transform: scale(1.25);
  transition: all 0.5s;
}

.input-fields__div--signin:hover {
  transform: scale(1.25);
  transition: all 0.5s;
}

.input-fields__div--signup::after {
  content: "Create Account";
  color: #D1E3DD;
  font-family: "Nunito", "Inter";
  font-weight: 800;
  font-size: 1.4rem;
}

.input-fields__div--signin::after {
  content: "Sign In";
  color: #D1E3DD;
  font-family: "Nunito", "Inter";
  font-weight: 800;
  font-size: 1.4rem;
}

.about-header {
  height: 8vh;
}

.about {
  margin-left: 1rem;
  margin-right: 1rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
  justify-content: center;
}

.about__h1 {
  font-family: "Nunito", "Inter";
  color: #1A3674;
  font-weight: 600;
  font-size: 3rem;
  text-align: center;
}

.about__p {
  width: 70%;
  font-family: "Inter", "Nunito";
  color: #1A3674;
  font-weight: 500;
  margin-top: 2rem;
  padding-left: 2rem;
  padding-right: 2rem;
  padding-bottom: 4rem;
  font-size: 1.2rem;
}

.about--right {
  align-self: flex-end;
}

.about-content {
  width: 100vw;
  display: flex;
  flex-direction: column;
}

.about-logo {
  background-color: grey;
  height: 18rem;
  width: 20rem;
  margin: 4rem;
}

.about__div {
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 5rem;
  padding: 1.5rem;
  background-color: #9D00FF;
  transition: 0.5s all;
}

.about__div::after {
  content: "Learn More";
  font-weight: 800;
  font-family: "Nunito", "Inter";
  color: #D1E3DD;
  font-size: 1.1rem;
}

.about__div:hover {
  transform: scale(1.25);
  transition: all 0.5s;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

input {
  border: none;
}

body {
  background-color: #D1E3DD;
  overflow-x: hidden;
  width: 100vw;
}

.menu-icon {
  display: flex;
  align-items: center;
  height: 100%;
}

.menu__i {
  position: absolute;
  right: 1rem;
  color: #1A3674;
  cursor: pointer;
}

.return-arrow {
  position: absolute;
  left: 2rem;
  top: 3rem;
  color: #D1E3DD;
  cursor: pointer;
}

.menu {
  position: absolute;
  background-color: #1A3674;
  width: 10rem;
  right: 0;
  opacity: 0.99;
  display: grid;
  grid-template-rows: repeat(4, 1fr);
  border-bottom-left-radius: 10px;
  transform: translateX(100%);
  transition: all 0.5s;
}

.menu__a {
  color: #D1E3DD;
  text-decoration: none;
  font-family: "Inter", "Nunito";
  width: 100%;
  text-align: center;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.menu--open {
  transform: translateX(0%);
  transition: all 0.5s;
}

.menu--active {
  background-color: #9D00FF;
}/*# sourceMappingURL=main.css.map */