* {
  box-sizing: border-box;
  margin: 0px;
  font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, "Helvetica Neue",  Arial, sans-serif;
}
.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100vw;
  border: #8bacd6;
  height: 100vh;
  background-color: #242628;
}
.header span {
  text-align: center;
  flex-wrap: nowrap;
  float: right;
  color: #ffffff;
  font-size: 5rem;
  font-style: normal;
  font-weight: 600;
  margin: 0;
  line-height: 36px;
}
.second h1 {
  text-align: center;
  color: #8bacd6;
  flex-wrap: nowrap;
  float: left;
  font-size: 5rem;
  font-style: normal;
  font-weight: 600;
  margin: 0;
  line-height: 36px;
}

.header {
  display: flex;
  position: relative;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-style: normal;
}
.header > p {
  font-style: normal;
  padding-top: 10px;
  font-weight: 400;
  font-size: 1.2rem;
  text-align: center;
  color: #ffffff;
  flex-grow: 0;
  width: 45%;
  margin: 16px 0px;
}
.footer > p {
  font-style: normal;
  padding-top: 35px;
  font-weight: 400;
  font-size: 1.1rem;
  text-align: center;
  color: #ffffff;
}
.footer > a {
  color:#759fd6;  text-decoration: none;
  font-weight: 400;
  font-size: 1.1rem;

}
.footer{
  text-align: center;
}
form > div > button {
  background: #759fd6;
  border-radius: 4px;
  border: none;
  width: 180px;
  height: 55px;
  color: #ffffff;
  margin-top: 10px;
  text-align: center;
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.25);
  cursor: pointer;
}
.field {
		width: 360px;
		background: #fff;
		color: gray;
		font: inherit;
		box-shadow: 0 6px 10px 0 rgba(0, 0, 0 , .1);
    -moz-border-radius: 10px; 
    -webkit-border-radius: 10px;
    border-radius: 10px;
		outline: 0;
		padding: 22px 18px;
    margin-right: 10px;
    margin-top: 10px;
}
@media screen and (max-width: 1024px) {
    .header > p {
      width: 65%;
    }
    .header span {
      font-size: 2rem;
    }
    .second h1 {
      font-size: 2rem;
    }
    .field {
      width: 260px;
  }
}

@media screen and (max-width: 600px) {
  .header > p {
    width: 100%;
  }
  .field {
      width: 260px;
  }
  .form{ text-align: center; }
  .header span {
    font-size: 3rem;
  }
  .second h1 {
    font-size: 3rem;
  }
}
