@tailwind base;
@tailwind components;
@tailwind utilities;



@layer components {

  * {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
  }

  html {
    width: 100%;
  }

  body {
    min-height: 100vh;
  }

  .bg-form {
    background-color: black;
    background-image: url("/assets/form-bg-img-b6f38cc6.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;

    @media only screen and (max-width: 800px) {
      background-position: left;
    }
  }

  .input-container {

    & label {
      display: block;
    }

    & input[type=email],
    & input[type=text] {
      width: 100%;
      background: rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.3) !important;
      border-radius: 3px;
      box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
      font-family: 'unitext', 'sans-serif';
      font-weight: 400;
      color: #FFF;
      padding: 15px;

      &:focus {
        outline: none;
        border-color: #e2cf9e !important;
      }
    }

    & input[type=submit] {
      width: 100%;
      background: #E2CF9E;
      background: linear-gradient(-45deg, #e2cf9e, #e2cf9e, #a48862, #a48862);
      background-size: 300%;
      background-position: 50% 0;
      font-family: 'unitext', 'sans-serif';
      font-weight: 500;
      color: #000;
      font-size: 20px;
      letter-spacing: 4px;
      text-transform: uppercase;
      padding: 20px;
      border-radius: 3px;
      margin-top: 10px;
      cursor: pointer;
      transition: all .3s ease-in-out !important;

      &:hover {
        color: #FFF;
        background-position: 0% 0;
      }
    }

  }
}
