* {
  box-sizing: border-box;
}

body {
  background: url(../img/beach-bg.jpg) center center no-repeat;
  background-size: cover;
  color: #4B585A;
  font-family: 'Montserrat', sans-serif;
  margin: 0;
}

.grid {
  width: 100%;
  max-width: 980px;
  min-height: 100vh;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.col {
  width: 50%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.content .text {
  line-height: 24px;
  padding: 0;
  padding: 15px 0
}

.content img.logo {
  max-width: 240px;

}

footer {
  position: fixed;
  bottom: 20px;
  right: 20px;
  font-size: 12px;
  line-height: 12px;
}

p.small {
  font-size: 10px;
  opacity: 0.4;
  text-align: right;
}

form {
  width: 100%;
  display: flex;
}

input {
  width: 100%;
  font-size: 14px;
  padding: 0;
  background: #ffffff;
  border: 1px solid #dddddd;
  border-radius: 10px;
  height: 50px;
  line-height:  50px;
  padding: 0 20px;
  margin: 0;
  font-family: 'Montserrat', sans-serif;
}

input[type=submit] {
  width: 180px;
  background: #23A9CB;
  background-size: 40px;
  color: white;
  border: none;
  margin: 0 0 0 10px;
  padding: 0;
}

.mobile {
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.2);
  max-width: 320px;
}

.mobile:focus {
  outline: none;
}


@media only screen and (max-width: 1023px) {
  body {
    padding: 20px;
    width: 100%;
  }
  .col {
    width: 100%;
    padding: 30px;
  }
  .right {
    padding-top: 0;
  }
  footer {
    width: 100%;
    text-align: center;
    right: 0;
    left: 0;
    z-index: -1;
  }
}


/* 
@media only screen and (max-width: 480px) {
  .content {
    padding: 20px;
  }
  .col {
    width: 480px;
  }
}
 */
