body {
  padding: 0;
  margin: 0px;

  font-family: sans-serif;
  color: rgb(15, 15, 25);
}
nav{
  width: 50vw;
}
nav ul {
  display: flex;
  flex-wrap: wrap;
  position: sticky;
  top: 0px;
  left: 0px;
  right: 0px;
  font-weight: bold;
  font-size: 1em;
  list-style-type: none;
  padding: 10px;
}

nav ul li {
  padding: 20px;
  background: #f0ebeb;
  border-radius: 5px;
  margin: 10px;
}
nav ul li:hover {
  background: black;
}

nav ul li a {
  color: hsl(202, 55%, 16%);
  text-decoration: none;
}
nav ul li a:hover {
  color: #eee;
}

.cont {
  width: 10px;
  max-width: 10px;
  margin: 20px;
  text-wrap: nowrap;
}
header {
  display: flex;
  align-items: center;
}

header h1 {
  font-size: 15px;
}

.logo_container {
  width: 5vw;
  border-radius: 9px;
}
.logo_container img {
  width: 100%;
  border-radius: 9px;
}

form {
  width: 100%;
  max-width: 100vw;
}

form span p {
  color: #888787;
}

form div span input,
form div select {
  width: 300px;
  height: 50px;
  margin: 0 10px;
  border-radius: 10px;
  border-width: 0;

  background: #f0ebeb;
  font-size: 16px;
  outline-color: rgb(98, 98, 165);
}

form span {
  display: flex;
  flex-direction: column;
}

.banner_image_section {
  display: none;
}

iframe {
  margin: 0px auto;
}

button {
  width: 100%;
  max-width: 50vw;
  padding: 20px;
  background: rgb(106, 111, 245);
  border-radius: 5px;
  text-align: center;
  color: white;
  outline: none;
  border: none;
}

.contact_sect {
  font-size: 13px;

  text-align: center;
  color: #8b8989;
}

.terms_and_button {
  display: flex;
  flex-direction: column;
}

/* responsive styling starts here */

@media (min-width: 1200px) {
  .cont {
    width: 10px;
    max-width: 10px;
    margin: 20px;
    text-wrap: nowrap;
  }
  nav {
    margin: 40px 10px;
    display: flex;
    justify-content: space-between;
  }
  nav ul {
    display: flex;
    gap: 15px;
    list-style-type: none;
  }
  nav ul li {
    background: #f0ebeb;
    padding: 20px;
    width: 200px;
    text-align: center;
  }

  nav ul li:hover {
    color: white;
    background: black;
    border-radius: 5px;
    transition: ease-out;
  }
  nav ul li a {
    text-decoration: none;
    font-size: 20px;
  }

  nav ul li a:hover {
    color: white;
  }

  .login_link {
    position: absolute;
    top: 0;
    left: 350px;
  }

  main aside h1 {
    font-size: 40px;
    text-align: center;
  }

  main aside h1 {
    width: 600px;
  }

  main div aside img {
    display: block;
    width: 100%;
    max-width: 35vw;
  }
  form {
    width: 100%;
    max-width: 100vw;
    padding: 0 10px;
   
  }

  form span {
    display: flex;
    flex-direction: column;
    margin: 0px;
  }
  .fifth_input_row {
    display: flex;
    flex-direction: column;
    margin: 0px;
  }

  .terms_and_button {
    display: flex;
    flex-direction: column;
    margin: 0px;
  }

  form div {
    display: flex;
    margin: 0px;
  }

  form label {
    font-weight: 300;
    margin: 0 10px;
  }

  form span p {
    color: #888787;
  }
  form span input,
  form div select {
    width: 300px;
    height: 50px;
    margin: 0 10px;
    border-radius: 10px;
    border-width: 0;
    background: #f0ebeb;
    font-size: 16px;
    outline-color: rgb(98, 98, 165);
  }

  .banner_image_section {
    display: block;
  }
  button {
    width: 100%;
    max-width: 50vw;
    padding: 20px;
    background: rgb(106, 111, 245);
    border-radius: 5px;
    text-align: center;
    color: white;
    outline: none;
    border: none;
  }

  .main_container {
    display: flex;
  }

  iframe {
    position: fixed;
    top: 0;
    left: 50%;
  }

  .second_iframe_section {
    margin-top: 100px;
  }
  .icons_container span img {
    width: 20px;
    height: 20px;
  }

  .icons_container {
    display: flex;
    justify-content: center;
  }
  .terms_and_button{
    width: 40em;
  }
}
