@import url(https://fonts.googleapis.com/css?family=Roboto:300);

/* Palette :
    #2c2c34
    #77878b
    #BDBDC7
    #f4f2f3
    #ff686b
 */

body {
  background: #2c2c34;
  color: lighten(#000000, 40%);
  font-family: 'RobotoDraft', 'Roboto', sans-serif;
  font-size: 14px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Pen Title */
.pen-title {
  padding: 50px 0;
  text-align: center;
  letter-spacing: 2px;
}

.pen-title h1 {
    margin: 0 0 20px;
    font-size: 48px;
    font-weight: 300;
    color: #f4f2f3
}
.pen-title h1 span {
    font-size: 12px;
}

.pen-title h1 span .fa {
    color: #33b5e5;
}
.pen-title h1 span a {
    color: #33b5e5;
    font-weight: 600;
    text-decoration: none;
}

/* Form Module
.form-module {
  position: relative;
  background: #ffffff;
  max-width: 320px;
  width: 100%;
  border-top: 5px solid #33b5e5;
  box-shadow: 0 0 3px rgba(#000000, .1);
  margin: 0 auto;
}

.form-module .toggle {
    cursor: pointer;
    position: absolute;
    top: -0;
    right: -0;
    background: #33b5e5;
    width: 30px;
    height: 30px;
    margin: -5px 0 0;
    color: #ffffff;
    font-size: 12px;
    line-height: 30px;
    text-align: center;
}

.toggle i {
    margin-top: 8px;
}

.form-module .toggle .tooltip {
    position: absolute;
    top: 5px;
    right: -65px;
    display: block;
    background: rgba(#000000, .6%);
    width: auto;
    padding: 5px;
    font-size: 10px;
    line-height: 1;
    text-transform: uppercase;
}

.form-module .toggle .tooltip::before {
    content: '';
    position: absolute;
    top: 5px;
    left: -5px;
    display: block;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-right: 5px solid rgba(#000000, .6);
}

.form-module .form {
    display: none;
    padding: 40px;
    
}

.form-module .form:nth-child(2) {
    display: block;
}

.form-module h2 {
    margin: 0 0 20px;
    color: #33b5e5;
    font-size: 18px;
    font-weight: 400;
    line-height: 1;
}

.form-module input {
    outline: none;
    display: block;
    width: 100%;
    border: 1px solid darken(#ffffff, 15%);
    margin: 0 0 20px;
    padding: 10px 15px;
    box-sizing: border-box;
    font-weight: 400;
}

.form-module input:focus {
    border: 1px solid #33b5e5;
    color: lighten(#000000, 20%);
}

.form-module button {
    cursor: pointer;
    background: #33b5e5;
    width: 100%;
    border: 0;
    padding: 10px 15px;
    color: #ffffff;
} */

button:hover {
    background: darken(#33b5e5, 15%);
}

.cta {
    background: darken(#ffffff, 5%);
    width: 100%;
    padding: 15px 40px;
    box-sizing: border-box;    
    color: lighten(#000000, 40%);
    font-size: 12px;
    text-align: center;
}

.cta a {
    color: lighten(#000000, 20%);
    text-decoration: none;
}


/* New CSS */


.login-page {
  width: 360px;
  /* padding: 8% 0 0; */
  margin: auto;
}
.form {
  position: relative;
  z-index: 1;
  background: #f4f2f3;
  max-width: 360px;
  margin: 0 auto 100px;
  padding: 45px;
  text-align: center;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2), 0 5px 5px 0 rgba(0, 0, 0, 0.24);
}
.form input {
  font-family: "Roboto", sans-serif;
  outline: 0;
  background: #ECE9EB;
  width: 100%;
  border: 0;
  margin: 0 0 15px;
  padding: 15px;
  box-sizing: border-box;
  font-size: 14px;
}
.form .buttonSite {
  font-family: "Roboto", sans-serif;
  text-transform: uppercase;
  outline: 0;
  background: #0c7489;
  width: 100%;
  border: 0;
  padding: 15px;
  color: #FFFFFF;
  font-size: 14px;
  -webkit-transition: all 0.3 ease;
  transition: all 0.3 ease;
  cursor: pointer;
}
.form .buttonSite:hover,.form .buttonSite:active,.form .buttonSite:focus {
  background: #0c7489;
}
.form .message {
  margin: 15px 0 0;
  color: #b3b3b3;
  font-size: 12px;
}
.form .message a {
  color: #0c7489;
  text-decoration: none;
}
.form .register-form {
  display: none;
}
.container {
  position: relative;
  z-index: 1;
  max-width: 300px;
  margin: 0 auto;
}
.container:before, .container:after {
  content: "";
  display: block;
  clear: both;
}
.container .info {
  margin: 50px auto;
  text-align: center;
}
.container .info h1 {
  margin: 0 0 15px;
  padding: 0;
  font-size: 36px;
  font-weight: 300;
  color: #1a1a1a;
}
.container .info span {
  color: #4d4d4d;
  font-size: 12px;
}
.container .info span a {
  color: #000000;
  text-decoration: none;
}
.container .info span .fa {
  color: #ff686b;
}