@import url(http://fonts.googleapis.com/css?family=Roboto);
html {
  box-sizing: border-box;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

body {
  font-family: 'Roboto';
}

.cf:before,
.cf:after {
  content: '';
  display: table;
}

.cf:after {
  clear: both;
}

.iphone6-container {
  background: url("https://s3-us-west-2.amazonaws.com/s.cdpn.io/15489/iphone6.jpg") no-repeat;
  background-size: cover;
  height: 892px;
  width: 425px;
  position: relative;
  left: 600px;
  top: 60px;
}

.page-container {
  overflow: hidden;
  position: absolute;
  bottom: 110px;
  top: 137px;
  left: 29px;
  right: 23px;
}

.page-nav {
  box-shadow: 0 0 10px 3px rgba(0, 0, 0, 0.35);
  position: relative;
  z-index: 2;
}

.page-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.page-nav-list > li {
  background: #009AFF;
  border-bottom: 3px solid transparent;
  color: #ffffff;
  cursor: pointer;
  display: block;
  float: left;
  font-size: .85em;
  overflow: hidden;
  padding: 1.15em 0;
  position: relative;
  text-align: center;
  text-transform: uppercase;
  width: 50%;
}
.page-nav-list > li.active {
  border-bottom: 3px solid #b4d455;
}
.page-nav-list > li span {
  z-index: 1;
  position: relative;
}

.green-splash {
  background: #b4d455;
  box-shadow: 0 0 5px 5px #b4d455;
  border-radius: 50%;
  height: 0;
  width: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 0;
}

.page-content-container {
  border-radius: 0 0 3px 3px;
  overflow: hidden;
  position: relative;
  height: 100%;
  z-index: 1;
}

.page-content {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 1;
}
.page-content.active {
  z-index: 2;
}
.page-content.transition-to {
  z-index: 3;
}

#page-content-1 {
  background: #ffffff;
}

#page-content-2 {
  background: url("http://www.hdfondos.eu/pictures/2013/1129/2/light-grey-curves-pics-371441.jpg");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  padding-top: 40px;
}

#page-content-3 {
  background: url("http://www.hdfondos.eu/pictures/2013/1129/2/light-grey-curves-pics-371441.jpg") center;
  background-size: 100% 100%;
}

#img {
  display: block;
  position: relative;
  left: 150px;
}

#img1 {
  height: 60px;
  width: 100px;
}

#text1 {
  text-align: center;
  color: red;
  position: relative;
  top: 30px;
}

#img2 {
  height: 80x;
  width: 60px;
}

#img-check {
  display: block;
  position: relative;
  left: 0px;
  top: 15px;
}

#text2 {
  text-align: justify;
  color: #000;
  position: relative;
  left: 60px;
  font-size: 16px;
}

#t1 {
  text-align: center;
}

#btn {
  color: white;
  height: 40px;
  width: 100px;
  background: #49B5ED;
  text-align: center;
  position: relative;
}

#btn1 {
  color: white;
  height: 40px;
  width: 100px;
  background: #49B5ED;
  text-align: center;
  position: relative;
  top: 60px;
}

#exito {
  text-align: center;
  color: #000;
}

#imagen {
  height: 50px;
  width: 100px;
  display: center;
  position: relative;
  left: -140px;
}

#car {
  height: 600x;
  width: 350px;
  position: relative;
  top: 50px;
}

.wrapper {
  width: 100%;
  height: 100%;
  padding: 3%;
}

.container {
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
  background: #fff;
  box-shadow: 5px 5px 5px #333;
}

.form-container {
  height: 100%;
  padding: 10px 40px;
}

.header {
  background: #AEB7C0;
  width: 100%;
  padding: 0px 0px;
  color: #fff;
}
.header h2 {
  font-size: 0.8em;
  text-align: center;
}

input {
  display: block;
  margin: 10px auto;
  padding: 10px;
  width: 100%;
  border: none;
  border-bottom: 1px solid #999;
  outline: none;
}

button {
  display: block;
  padding: 2px;
  margin: 10px auto;
  width: 80%;
  border: none;
  position: relative;
  background: #AEB7C0;
  color: #fff;
  border-radius: 10px;
  overflow: hidden;
}
button:before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 80%;
  background: rgba(255, 255, 255, 0.3);
  transform: skew(-45deg);
  transition: 0.2s ease;
}
button:hover:before {
  left: -10%;
}

.line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #AEB7C0;
  transition: 0.6s ease;
}

.form-group {
  position: relative;
  margin: 0 0 23px;
}
.form-group label {
  position: absolute;
  top: 12px;
  left: 10px;
  display: block;
  transition: 0.2s ease;
}
.form-group input:focus ~ label, .form-group input:valid ~ label {
  transition: 0.2s ease;
  transform: translate(-10px, -20px) scale(0.75);
}
.form-group input:focus ~ .line, .form-group input:valid ~ .line {
  transition: 0.6s ease;
  width: 100%;
}
.form-group textarea {
  display: block;
  margin: 10px auto 0;
  padding: 10px;
  resize: none;
  width: 100%;
  height: 40px;
  outline: 0;
  border: none;
  border-bottom: 1px solid #999;
  transition: 0.6s ease;
}
.form-group textarea:focus, .form-group textarea:valid {
  transition: 0.6s ease;
  height: 150px;
}
.form-group textarea:focus ~ label, .form-group textarea:valid ~ label {
  transition: 0.2s ease;
  transform: translate(-10px, -20px) scale(0.75);
}
.form-group textarea:focus ~ .line, .form-group textarea:valid ~ .line {
  transition: 0.6s ease;
  width: 100%;
}
