a {
  text-decoration: none;
}
#logo{
  
}

.centered {
  text-align: center;
}

.white {
  color: #fff;
  text-decoration:none;
}
.gray {
  color: #999;
  text-decoration:none;
}
.blue {
  color: #3b5998;
}

.smaller {
  font-size: 14px;
  font-weight: 600;
  line-height: 22px;
  padding: 0 35px;
}

/*--------------------
Form
--------------------*/
.form-group {
  position: relative;
  margin: 5px 54px 8px;
}
.form-group label {
  position: absolute;
  top: 18px;
  left: 14px;
  z-index: -1;
  color: #999;
  font-size: 10px;
  opacity: 0;
  text-align: right;
  text-transform: uppercase;
  transition: top .2s ease;
}
.form-group .google-button__text {
  display: inline-block;
  vertical-align: middle;
  padding: 0 24px;
  font-size: 14px;
  font-weight: bold;
  font-family: 'Roboto',arial,sans-serif;
}
.form-group button {
  text-align: left !important;
}
.form-group .form-control {
  display: block;
  width: 100%;
  height: 42px;
  padding: 1px 3px;
  font-size: 14px;
  line-height: 1.42857143;
  background-color: #1b1b1b;
  background-image: none;
  border-radius: 8px;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
  outline: none;
}
.form-group .form-control:hover {
  border-color: #a0c4fc;
}
.form-group .form-control:focus {
  box-shadow: none;
  border-color: #33b1f8;
}
.form-group .suggestion {
  display: none;
  margin: 5px 0 -5px;
  padding-right: 5px;
  color: #999;
  font-style: italic;
  font-size: 13px;
  text-align: right;
}
.form-group .suggestion a {
  color: red;
  cursor: pointer;
}
.form-group .reveal-password {
  display: none;
  position: absolute;
  z-index: 1;
  top: 15px;
  right: 15px;
  cursor: pointer;
  opacity: .7;
  transition: opacity .2s ease;
}
.form-group .reveal-password .icon {
  width: 18px;
  height: 14px;
  fill: #000;
}
.form-group .reveal-password.active .icon {
  fill: #666;
}
.form-group.filled label {
  position: absolute;
  top: -13px;
  left: 4px;
  z-index: 1;
  font-size: 10px;
  opacity: 1;
  text-align: right;
  text-transform: uppercase;
}
.form-group.filled .reveal-password {
  display: block;
}
.form-group.error label {
  color: #f00;
}
.form-group.error .form-control {
  box-shadow: none;
  border-color: #f00;
}
.form-group.focus label {
  color: #33b1f8;
}
.form-group.focus .form-control {
  box-shadow: none;
  border-color: #33b1f8;
}
.form .btn {
  display: block;
  width: 100%;
  cursor: pointer;
  font-weight: 400;
  letter-spacing: 1px;
  color: #fff;
  background-color: #2b2f33;
  border: none;
  border-radius: 4px;
  padding: 12px 20px;
  text-decoration: none;
  text-transform: uppercase;
  transition: all .2s ease-in-out;
  white-space: nowrap;
  outline: none;
}
.form .btn:hover {
  background: #3e9bf7;
}
.form .google-button__icon {
  display: inline-block;
  vertical-align: middle;
  margin: 8px 0 8px 8px;
  width: 18px;
  height: 18px;
  box-sizing: border-box;
}
.form .btn-white {
  display: block;
  width: 100%;
  cursor: pointer;
  font-weight: 400;
  letter-spacing: 1px;
  color: #444;
  background-color: #fff;
  border: 1px;
  border-radius: 4px;
  padding: 1px 6px;
  text-decoration: none;
  text-transform: uppercase;
  transition: all .2s ease-in-out;
  white-space: nowrap;
  outline: none;
  border: 1px solid #cfd8dc;
  border-radius: 4px;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
}
.form .btn-white:hover {
  background: #ddd;
}

/*--------------------
Signup
--------------------*/
.signup {
  width: 360px;
  margin: 0 auto;
  margin-top: 150px;

}
@media screen and (max-width: 375px) {
  .signup {
    width: 360px;
    margin: 0 auto;
    margin-top: 15px;
  
  }
}

@media (min-width: 376px) {
  .signup {
    width: 360px;
    margin: 0 auto;
    margin-top: 150px;
  
  }

}


.signup .h1 {
  color: #fff;
  font-size: 32px;
  font-weight: 300;
  margin: 0 0 30px -10px;
  
}
.signup .form {
  padding: 35px 30px;
  background: #fff;
  box-shadow: 0 15px 12px 0 rgba(0, 0, 0, 0.04), 0 19px 38px 0 rgba(0, 0, 0, 0.12);
  border-radius: 8px;
  margin-top: 15px;
}

.google-button {
  height: 40px;
  border-width: 0;
  background: white;
  color: #737373;
  border-radius: 5px;
  white-space: nowrap;
  box-shadow: 1px 1px 0px 1px rgba(0, 0, 0, 0.05);
  transition-property: background-color, box-shadow;
  transition-duration: 150ms;
  transition-timing-function: ease-in-out;
  padding: 0;
}
.google-button:focus, .google-button:hover {
  /*box-shadow: 1px 4px 5px 1px rgba(0,0,0,0.1);*/
}
.google-button:active {
  background-color: #e5e5e5;
  box-shadow: none;
  transition-duration: 10ms;
}

.google-button__icon {
  display: inline-block;
  vertical-align: middle;
  margin: 8px 0 8px 8px;
  width: 18px;
  height: 18px;
  box-sizing: border-box;
}

.google-button__text {
  display: inline-block;
  vertical-align: middle;
  padding: 0 24px;
  font-size: 14px;
  font-weight: bold;
  font-family: 'Roboto',arial,sans-serif;
}
