/*!**********************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[3]!./public/assets/css/outlined-input.css ***!
  \**********************************************************************************************************************************************************************************************************************************************************************************/
/* .container {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .material-textfield {
    position: relative;
  } */
  
  /* label {
    position: absolute;
    font-size: 1rem;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background-color: white;
    color: gray;
    padding: 0 0.3rem;
    margin: 0 0.5rem;
    transition: 0.1s ease-out;
    transform-origin: left top;
    pointer-events: none;
  } */

  /* @media screen and (max-width: 768px) {
    .input {
      font-size: 0.8rem;
      padding: 0.7rem 0.3rem;
    }  
  }

  @media screen and (min-width: 768px) {
    .input {
      font-size: 1rem;
      padding: 1rem 0.7rem;
    }
  } */

  .input {
    outline: none;
    border: 1px solid #d9d9d9;
    border-radius: 5px;
    /* color: gray; */
    transition: 0.1s ease-out;
  }
  
  .input:focus {
    border-color: var(--primary);
  }
  
  .input:focus+.label {
    color: var(--primary);
    top: 0;
    transform: translateY(-50%) scale(0.9) !important;
  }
  
  .input:not(:placeholder-shown)+label {
    top: 0;
    transform: translateY(-50%) scale(0.9) !important;
  }
  
  .input:not(:focus)::placeholder {
    opacity: 0;
  }
  
