body {
    background: rgba(163, 195, 217, 0.5);
    font-family: 'Roboto', sans-serif;
}

#logo {
    margin: auto;
    position: absolute;
    width: 400px;
}

#name {
    margin-top: 80px;
    text-align: center;
    font-size: 40px;
    color: rgba(82, 98, 124, 0.50);
    text-shadow: 2px 2px 5px;
}

/* Container */
.container {
  position: relative;
  max-width: 460px;
  width: 100%;
  margin: 0 auto 10px;
}

/* Card */
.card {
    position: relative;
    background: none;
    padding: 25px 0 40px 0;
    border: none;
}

.card .input-container {
  position: relative;
  margin: 0 60px 20px;
}

.card .input-container input {
  outline: none;
  z-index: 1;
  position: relative;
  background: none;
  width: 100%;
  height: 54px;
  border: 0;
  color: #EF8354;
  font-size: 15px;
  font-weight: 200px;
}
.card .input-container input:focus ~ label {
  color: #EF8354;
  -webkit-transform: translate(-12%, -50%) scale(0.75);
          transform: translate(-12%, -50%) scale(0.75);
}
.card .input-container input:focus ~ .bar:before, .card .input-container input:focus ~ .bar:after {
  width: 50%;
}
.card .input-container input:valid ~ label {
  color: rgba(82, 98, 124, 0.5);
  -webkit-transform: translate(-12%, -50%) scale(0.75);
          transform: translate(-12%, -50%) scale(0.75);
}
.card .input-container label {
  position: absolute;
  top: 0;
  left: 0;
  color: rgba(82, 98, 124, 0.5);
  font-size: 15px;
  font-weight: 300;
  line-height: 70px;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
}
.card .input-container .bar {
  position: absolute;
  left: 0;
  bottom: 0;
  background: rgba(82, 98, 124, 0.5);
  width: 100%;
  height: 1px;
}
.card .input-container .bar:before, .card .input-container .bar:after {
  content: '';
  position: absolute;
  background: #EF8354;
  width: 0;
  height: 2px;
  -webkit-transition: .2s ease;
  transition: .2s ease;
}
.card .input-container .bar:before {
  left: 50%;
}
.card .input-container .bar:after {
  right: 50%;
}

.card .button-container {
  margin: 50px 0 20px;
  text-align: center;
}
.card .button-container button {
    color: #E0E0E2;
    outline: 0;
    cursor: pointer;
    position: relative;
    display: inline-block;
    background: #52627C;
    width: 150px;
    padding: 15px 0;
    font-size: 15px;
    font-weight: 200;
    line-height: 1;
    text-transform: uppercase;
    overflow: hidden;
    -webkit-transition: .3s ease;
    transition: .3s ease;
    
}

.card .button-container button:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  background: #EF8354;
  width: 30px;
  height: 30px;
  border-radius: 100%;
  margin: -15px 0 0 -15px;
  opacity: 0;
  -webkit-transition: .3s ease;
  transition: .3s ease;
}
.card .button-container button:hover {
  background-color: #EF8354;

}

.card .footer1 {
  margin: 15px 0 0;
  color: #52627C;
  font-size: 13px;
  font-weight: 300;
  text-align: center;
}
.card .footer1 a {
  color: inherit;
  text-decoration: none;
  -webkit-transition: .3s ease;
  transition: .3s ease;
}
.card .footer1 a:hover {
  color: #EF8354;
}


.card .footer2 {
  margin: 40px 0 0;
  color: #52627C;
  font-size: 10px;
  font-weight: 300;
  text-align: center;
}
.card .footer2 a {
  color: inherit;
  text-decoration: none;
  -webkit-transition: .3s ease;
  transition: .3s ease;
}
.card .footer2 a:hover {
  color: #EF8354;
}


input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    -webkit-transition-delay: 9999s;
    -webkit-transition: color 9999s ease-out, background-color 9999s ease-out;
}