*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: inherit; }

html {
  box-sizing: border-box;
  font-size: 62.5%; }

body {
  font-family: "Poppins", sans-serif;
  line-height: 1.5;
  background: #ff7a7a url("../images/bg-intro-desktop.png"); }

.forms {
  background-color: #fff;
  padding: 4rem 3rem;
  border-radius: 5px;
  margin-top: 2rem;
  box-shadow: 0 0.6rem 0rem rgba(62, 60, 73, 0.4); }
  .forms__inputBox {
    position: relative;
    margin-bottom: 2rem; }
  .forms__input {
    width: 100%;
    padding: 1.4rem 2rem;
    outline: none;
    border-radius: 3px;
    border: 2px solid #b9b6d3;
    transition: border-color 0.7s; }
    .forms__input:focus {
      border-color: #6055a5; }
  .forms__icon {
    position: absolute;
    right: 3rem;
    top: 1.2rem;
    opacity: 0; }
  .forms__small {
    color: #ff7a7a;
    font-size: 1rem;
    font-weight: 700;
    text-align: right;
    display: flex;
    justify-content: flex-end;
    opacity: 0;
    position: absolute;
    top: 48px;
    right: 0; }
  .forms__btn {
    width: 100%;
    padding: 1.4rem 2rem;
    border: none;
    background-color: #38cc8c;
    color: #fff;
    font-size: 1.8rem;
    border-bottom: 5px solid #1f5a41;
    border-radius: 5px;
    cursor: pointer; }
  .forms__termAndService {
    font-size: 1rem;
    font-weight: 600;
    color: #b9b6d3;
    text-align: center;
    display: block; }
  .forms__strongText {
    color: #ff7a7a; }

.container {
  width: 80%;
  max-width: 100rem;
  margin: 0 auto; }
  @media screen and (max-width: 62rem) {
    .container {
      width: 90%; } }

.innerSection {
  display: flex;
  justify-content: space-between;
  height: 100vh;
  align-items: center; }
  @media only screen and (max-width: 37.5rem) {
    .innerSection {
      flex-direction: column;
      height: auto;
      margin: 10rem 0; } }
  .innerSection__item {
    flex-basis: 50%; }
  .innerSection__item1 {
    padding-right: 4rem; }
    @media screen and (max-width: 62rem) {
      .innerSection__item1 {
        padding-right: 0; } }
    @media screen and (max-width: 37.5rem) {
      .innerSection__item1 {
        padding-right: 0; } }
  .innerSection__item2 {
    padding-left: 4rem;
    margin: 4rem; }
    @media screen and (max-width: 62rem) {
      .innerSection__item2 {
        padding-left: 0; } }
    @media only screen and (max-width: 37.5rem) {
      .innerSection__item2 {
        padding-left: 0;
        margin: 0; } }
  .innerSection__priceSection {
    background-color: #6055a5;
    color: #fff;
    text-align: center;
    padding: 1.5rem 0;
    font-size: 1.6rem;
    border-radius: 4px;
    box-shadow: 0 0.6rem 0rem rgba(62, 60, 73, 0.4); }
    @media screen and (max-width: 37.5rem) {
      .innerSection__priceSection {
        padding: 2rem; } }
  .innerSection__para {
    font-size: 1.7rem;
    font-weight: 500;
    color: #fff; }
    @media screen and (max-width: 37.5rem) {
      .innerSection__para {
        text-align: center;
        margin-bottom: 8rem; } }

.footer {
  text-align: center; }
  .footer__attribution {
    font-size: 2rem; }

h1 {
  color: #fff;
  font-size: 5rem;
  line-height: 1;
  margin-bottom: 3rem; }
  @media screen and (max-width: 62rem) {
    h1 {
      font-size: 4rem; } }
  @media screen and (max-width: 37.5rem) {
    h1 {
      font-size: 3rem;
      line-height: 1.3;
      text-align: center;
      margin-top: 4rem; } }
