.cover {
  width: 100%;
  height: 670px;
  background-image: url('../img/cover.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
}

.cover .text {
  padding-top: 50px;
  text-align: center;
  color: #ffffff;
  font-size: 24px;
  text-shadow: 0 4px 3px rgba(0, 0, 0, 0.1);
}
.cover .text .prefix{
  font-weight: bold;
}
.cover .text .main{
  font-weight: bold;
  font-size: 50px;
  line-height: 1.2em;
}

.cover .card {
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
    width: 390px;
    min-width: 280px;
    max-width: 90%;
    min-height: 260px;
    margin: auto auto 0 auto;
    border-radius: 20px 20px 0 0;
    padding: 25px 40px 0px 30px;
    box-sizing: border-box;
    box-shadow: 0 -6px 5px 0px rgba(0, 0, 0, 0.2);
}

.cover .card .card-text {
  text-align: center;
}

.cover .card form  {
  display:  flex;
  justify-content: space-between;
  flex-direction: column;
}

.cover .card form input {
  text-align: left;
  padding-left: 10px;
  margin: 20px auto 0 auto;
  width: 212px;
}

.cover .card form .button {
  width: 212px;
  margin: 20px auto 0 auto;
}

.cover .card .__message {
  margin-left: auto;
  margin-right: auto;
}

.cover__policy {
  text-align: center;
  font-size: 0.75em;
}

@media (max-width: 600px) {
  .cover {
    height: auto;
  }
  .cover .text {
    font-size: 20px;
  }
  .cover .text .main{
    font-size: 28px;
  }
  .cover .card {
    margin: 20px auto 0 auto ;
  }
}