



  .inputs{
      position: relative;
      width: 100%;
      height: 60px;

  }

  .inputs select{
    width: 100%;
    border: 0px;
    background: transparent;
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    outline: none;
  }


  .inputs select option{
    color: #000;

  }



  .inputs .input-control{
      width: 100%;
      border: 0px;
      background: transparent;
      color: #fff;
      outline: none;
      border-bottom: 1px solid rgba(255, 255, 255, 0.5);
      padding-bottom: 5px;
      font-size: 15px;
      position: absolute;
      z-index: 2;
  }

  .inputs-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    padding: 2px 10px 0 0px;
    transition: all 200ms;
    color: #fff;z-index: 1;
  }



  .input-control:focus +  .inputs-placeholder,
  .input-control:valid +  .inputs-placeholder {
    font-size: 75%;
    transform: translate3d(0, -120%, 0);
  }


  .linha{
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-direction: column;
  }

  .inputs textarea{
      resize: none;
      outline: none;
      height: 150px;
  }

  .inputs p{
    color: #fff;
  }

  button{
    width: 100%;
    height: 40px;
    text-align: center;
    background-color:#1946A0;
    color:#fff;
    font-family: FlamaCondensedMedium;
    border: 0px;
    font-size: 18px;
    margin-top: 10px;
    transition: all 0.2s ease-in-out;
    border-radius: 10px;
}


@media only screen and (min-width: 500px) {
    button{
        width: 250px;
        float: right;
        height: 50px;
        cursor: pointer;
        background-color: rgba(25, 70, 160, 0.8);
    }

    button:hover{
        font-size: 18.5px;
        background-color: rgba(25, 70, 160, 1);
    }
}


  @media only screen and (min-width: 1000px) {
    .linha{
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-direction: row;
    }

    .linha  .inputs{
        width: calc(50% - 20px);
    }
  }
