.container.main
  .row
    .col-md-6.col-md-offset-3.text-center.title
      h1 Want to Connect?
      .bar
  .row
    .col-md-6.col-md-offset-3.form
      h2 Login
      input(
        type='text'
        name='username'
        placeholder='username'
      )
      br
      input(
        type='password'
        name='password'
        placeholder='password'
      )
      a(href="#0").btn.btn-default.login
        | login
        
      h4 Don't have an account? We can fix that!
        span
          a(href="#0").btn.btn-default.signup
            | Signup
          
        
      
View Compiled
@import url(https://fonts.googleapis.com/css?family=Lato:400,100,300);

// variables
$trans-orange: rgba(245, 132, 33, .87);
$orange: rgb(245, 132, 33);
$font: Lato;

body {
  background: $trans-orange;
  min-height: 100vh;
  width: auto;
}

.title h1 {
  font-size: 3.5em;
  color: #fff;
}

.bar {
  height: .25em;
  width: 100%;
  background: #fff;
  margin: 1.5em auto 0;
}

.main {
/*  background: $trans-orange;*/
  min-height: 50vh;
  position: relative;
  top: 20vh;
}

input[type=text], input[type=password] {
  font-size: 1.75em;
  padding: .55em;
  width: 100%;
  margin-bottom: 1em;
  border: none;
  
  &::placeholder {
   color: #aaaaaa;
   position:relative;
   padding:0;
   transition: all 0.5s ease;
  }
      
  &:hover::placeholder, &:focus::placeholder {
    padding-top: 3em;
  }
}

.form {
  h2 {
    text-align: left;
    font-weight: 100;
    color: #fff;
    margin-bottom: .5em;
  }
  h4 {
    font-weight: 100;
    color: #fff;
    margin-top: 2em;
  }
}

.login {
  color: rgba(255, 255, 255, 1);
  width: 6em;
  font-family: $font;
  font-weight: 100;
  font-size: 1.75em;
  border: 1px solid rgba(255, 255, 255, .75);
  background: transparent;
  transition: all 200ms ease-in;
  border-radius: .65em;
  
  &:hover, &:focus {
    background: #fff;
    color: $orange;
    border: none;
  }
}

.signup {
  @extend .login;
  font-size: 1em;
  position: relative;
  left: 1.5em;
}

// base
h1, h2 h3, h4, h5, h6, input {
  font: $font;
  font-weight: 100;
}
View Compiled

External CSS

  1. //maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css

External JavaScript

This Pen doesn't use any external JavaScript resources.