/* ----------------------- */
/* ------ BACKGROUND ----- */
/* ----------------------- */

body {
  background: #ffffff; /* fallback for old browsers */
  background: -webkit-linear-gradient(right, #ffffff, #eeeeee);
  background: -moz-linear-gradient(right, #ffffff, #eeeeee);
  background: -o-linear-gradient(right, #ffffff, #eeeeee);
  background: linear-gradient(to left, #ffffff, #eeeeee);
  font-family: "Roboto", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;      
}

div.wireframe-layer {
  background-repeat: no-repeat;
  position: absolute;
  bottom: 0px;
  left: 0px;
  right: 0px;
  margin-right: 0px;
  margin-left: 0px;
  opacity: 0;
  animation: fadeIn 0.4s linear 0.5s forwards;
  z-index: -1;
}


@keyframes fadeIn {
  from {opacity: 0;}
  to   {opacity: 1;}
}

div.wireframe-layer-1 {
  background-image: url("../customimages/wireframe_orange_complete.png");
  background-position: right top;
  top: 65px;
}

div.wireframe-layer-2 {
  background-image: url("../customimages/wireframe_grey.png");
  background-position: left bottom;
  top: 0;
}


/* ----------------------- */
/* -------- TITLE -------- */
/* ----------------------- */

div.element-icon-container {
  float: left;
  padding-bottom: 22px;
}

img.element-icon {
  height: 100px;
}

.no-margin {
  padding-bottom: 0px;
}

input:focus, submit:focus {
  outline: none;
}

.login-title {
  float: left;
  padding: 21px;
}

/* ----------------------- */
/* --------- FORM -------- */
/* ----------------------- */

.container.login-area {
  padding-left: 40px;
  padding-right: 40px;
  padding-top: 40px;
  margin-top: 9%;
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 100px auto;
  opacity: 0;
  transform: translateY(-20px);
  animation: dropIn 0.8s cubic-bezier(.24,.65,.06,.82) forwards;
}

@keyframes dropIn {
  from {opacity: 0; transform: translateY(-20px);}
  to {opacity: 1; transform: translateY(0);}
}



.form {
  position: relative;
  z-index: 1;
  background: #FFFFFF;
  width: 100%;
  margin: 40px auto 120px;
  padding: 45px;
  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: #f2f2f2;
  width: 100%;
  border: 1px #e8e8e8 solid;
  margin: 0 0 15px;
  padding: 15px;
  box-sizing: border-box;
  font-size: 14px;
}

.form input[type=submit] {
  font-family: "Roboto", sans-serif;
  text-transform: uppercase;
  outline: 0;
  background: #818a90;
  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 input[type=submit]:hover:not(:active), .form input[type=submit]:focus:not(:active) {
  background: #37423a;
}



