/* Design based on Blue Login Field of Kevin Sleger https://codepen.io/MurmeltierS/pen/macKb */

@font-face {
  font-family: Futura;
  src: url(fonts/futura-pt.woff);
}

@font-face {
  font-family: Futura-Bold;
  src: url(fonts/futura-pt-bold.woff);
}

body {
  background: #000000 url("https://benolivas.com/images/Photo/ocean1.png") no-repeat center center fixed;
  background-size: cover;
  /* font-family: "Futura"; */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  &::before {
    z-index: -1;
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    background: #000000;
    /* IE Fallback */
    background: rgba(0,0,0, 0);
    width: 100%;
    height: 100%;
  }
}

.form {
  position: absolute;
  top: 50%;
  left: 50%;
  background: #fff;
  width: 285px;
  margin: -140px 0 0 -182px;
  padding: 40px;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
  h2 {
    font-family: "Futura-Bold";
    margin: 0 0 20px;
    line-height: 1;
    color: #000000;
    font-size: 18px;
    /* font-weight: 400; */
  }
  input {
    outline: none;
    display: block;
    width: 100%;
    margin: 0 0 20px;
    padding: 10px 15px;
    border: 1px solid #ccc;
    color: #ccc;
    font-family: "Futura";
    box-sizing: border-box;
    font-size: 14px;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transition: 0.2s linear;
  }

input, select, textarea{
      color: #ccc;
}
textarea:focus, input:focus {
    color: #000;
}

  button {
    cursor: pointer;
    background: #44c4e7;
    width: 100%;
    padding: 10px 15px;
    border: 0;
    color: #fff;
    font-family: "Futura";
    font-size: 14px;
    font-weight: 400;
    &:hover {
      background: #369cb8;
    }
  }
}

.error {
  display: none;
  font-family: "Futura";
  color: #FF0000;
}

.valid{
  display:none;
  font-family: "Futura";
}
