@import url(https://fonts.googleapis.com/css?family=Nunito);body {
  font-family: 'Poppins', sans-serif;
  position: relative;
  margin: 0px;
  overflow-y: scroll;
  min-width: 320px;
  image-rendering: crisp-edges;
  background-color: white;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
font,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
menu {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
}

* {
  box-sizing: border-box;
}

.app-links a {
  display: block;
  width: 135px;
  height: 40px;
  background-position: center;
  background-size: contain;
  float: left;
  margin: 0px 6px;
}

.app-links a:first-child {
  margin-left: 0px;
}

.app-links .app-links__google {
  background-image: url(/images/google-play.png);
}

.app-links .app-links__apple {
  background-image: url(/images/app-store.png);
}

@media (max-width: 400px) {
  .app-links {
    display: flex;
    flex-direction: column;
  }

  .app-links a {
    margin: 0px;
    margin-bottom: 10px;
  }
}

.button {
  color: #000;
  border: 0;
  font-weight: 500;
  display: block;
  text-decoration: none;
  text-align: center;
  font-size: 15px;
  height: 42px;
  line-height: 42px;
  border-radius: 6px;
  background-color: #EDEDED;
  max-width: 200px;
  margin: auto;
  margin-bottom: 250px;
  font-family: 'Poppins', sans-serif;
}

@media (max-width: 400px) {
  .button {
    margin-bottom: 150px;
  }
}

.message {
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 800px;
  margin: auto;
  min-height: 100vh;
}

.message_data {
  width: 100%;
  text-align: center;
}

.message_data-card {
  padding: 50px 30px;
  position: relative;
  background-image: url(/images/oval.svg);
  background-size: contain;
  background-repeat: no-repeat;
}

.message_data-card:before {
  content: "";
  background: url(/images/girl.svg);
  width: 100%;
  height: 300px;
  position: absolute;
  left: 0px;
  bottom: 0px;
  background-position: left bottom;
  background-size: contain;
  background-repeat: no-repeat;
}

.logo {
  background: url(/images/logo.svg);
  height: 100px;
  width: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  margin-bottom: 30px;
}

h1 {
  font-weight: bold;
  font-family: 'Poppins', sans-serif;
  font-size: 36px;
  max-width: 350px;
  text-align: left;
  margin: auto;
  margin-bottom: 30px;
  line-height: 60px;
  padding-top: 50px;
}

@media (max-width: 800px) {
  h1 {
    font-size: 26px;
    line-height: 40px;
  }
}

p {
  font-size: 16px;
  max-width: 500px;
  margin: auto;
  color: black;
  line-height: 26px;
  margin-bottom: 50px;
  text-align: center;
}

@media (max-width: 400px) {
  p {
    font-size: 14px;
  }
}

input {
  border: 1px solid #c7c7cc;
  border-radius: 8px;
  height: 50px;
  width: 100%;
  font-size: 17px;
  color: #8e8e93;
  padding: 0px 15px;
  margin-top: 15px;
  outline: none;
}

.button--primary {
  position: relative;
  width: 100%;
  height: 50px;
  border-radius: 8px;
  outline: none;
  background-image: linear-gradient(-45deg, #EDEDED 0%, #EDEDED 75%);
  margin-top: 15px;
}

.button--primary:after {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  background-color: #ECB5AA;
  transition: opacity 0.3s ease-out;
  z-index: 2;
  opacity: 0;
}

.button--primary:hover:after {
  opacity: 1;
  transition: opacity 0.3s ease-out;
}

.button--primary .button__text {
  z-index: 3;
  position: relative;
  color: black;
  font-size: 16px;
  font-weight: 500;
}

.input-error {
  color: #ef5002;
  font-size: 12px;
}

