/* 폼(textarea,select,input[text]) 관련 레이아웃 */

table {
  border-collapse: separate;
  border-spacing: 10px;
}

.block {
  display: block;
}

@media (max-width: 450px) {
  .login-html {
    padding: 0;
  }
}

textarea {
  max-width: 320px;
  border: 1px solid #e7e7e7;
  border-radius: 5px;
  padding: 10px 20px;
}

textarea:focus {
  background-color: #fff;
  border-color: #80bdff;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, .25);
}

select {
  width: 100%;
  max-width: 500px;
  height: 30px;
  border: 1px solid #e7e7e7;
  border-radius: 5px;
  background: url(img/arrow.png) no-repeat right 13px center;
  background-size: 13px;
  padding-left: 13px;
}


form[name="invinput"] {
  width: fit-content;
  margin: auto;
}


form[name="searchinput"] input[type='text'],
form[name="purchaseinput"] input[type='text'],
form[name="invinput"] input[type='text'],
form[name="invinput"] input[type='email'] {
  width: 100%;
  max-width: 320px;
  border: 1px solid #e7e7e7;
  border-radius: 5px;
  padding: 5px 20px;
}

input[type='text']:focus {
  background-color: #fff;
  border-color: #80bdff;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, .25);
}

.evaluation input[type="button"] {
  font-family: "Font Awesome 5 Free", "FontAwesome";
  padding: 5px 10px;
  width: 36px;
  height: 36px;
}

.tip input[type="button"] {
  font-family: "Font Awesome 5 Free", "FontAwesome";
}

@media (max-width:768px) {
  .modify form {
    font-size: 14px;
  }
}