body {
  /* Location of the image */
  background-image: url(../images/kulay-bg-paints.jpg);
  
  /* Background image is centered vertically and horizontally at all times */
  background-position: center center;
  
  /* Background image doesn't tile */
  background-repeat: no-repeat;
  
  /* Background image is fixed in the viewport so that it doesn't move when 
     the content's height is greater than the image's height */
  background-attachment: fixed;
  
  /* This is what makes the background image rescale based
     on the container's size */
  background-size: cover;
  
  /* Set a background color that will be displayed
     while the background image is loading */
  background-color: #464646;
  color: #FDFCFD;
}


.login_box {
  width: 100%;
  margin: auto;
  margin-top:50px;
  padding: 10px;
  max-width: 400px;
  border-radius: 2px;
  box-shadow: $shadow2;
  background-color: rgba(0,0,0,0.2);
}

.login_input {
  background: transparent;
  color: #FFFFFF;
  border-style: none;
}

.login_button {
  width:100%;
}

.login_link {
  color:#FDFCFD;
  text-decoration: none;
}

.login_link:hover {
  color:#FDFCFD;
  text-decoration: none;
}