<!--
form {
    display: inline;
}
button, textarea, select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
input[type="text"], input[type="password"] {
    border : 1px solid #d2d2d2;
    line-height: 1.5em;
    width : 160px;
    padding : 5px 5px;
}

input[type="submit"], input[type="button"] {
    color : #fff;
    text-align : center;
    background-color: #005E15;
    border: 0;
    padding : 8px 20px;
    min-width: 80px;
    border-radius: 10px;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
}

label {
    padding: 5px 0;
    font-size: 11.5pt;
    width: 85px;
    margin-left: 4px;
}

input[type="checkbox"] {
    display: none;
}
input[type="checkbox"] + span {
    padding-left: 20px;
    position:relative;
    color: #0086ad;
    font-size: inherit;
}
input[type="checkbox"] + span::before{
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 14px;
  height: 14px;
  border: 1px solid #0086ad;
  border-radius: 4px;
}
input[type="checkbox"]:checked + span::after{
  content: "";
  display: block;
  position: absolute;
  top: -5px;
  left: 5px;
  width: 7px;
  height: 14px;
  transform: rotate(40deg);
  border-bottom: 3px solid #6c9bd2;
  border-right: 3px solid #6c9bd2;
}

input[type="radio"] {
        display : none;
}
.radio {
  display: inline-block;
  position: relative;
  margin: 4px;
  width: 110px;
  line-height: 1.5em;
  text-align: center;
  border: 1px solid #006428;
  border-radius: 12px;
  color: #006428;
  font-size: 10.5pt;
  background-color: #daead0;
  white-space: nowrap;
  cursor: pointer;
  transition: background-color .2s, box-shadow .2s;
}
.radio:hover, input:focus + .radio {
  box-shadow: 0 0 10px rgba(0, 0, 0, .6);
}

input[type="radio"]:checked + .radio {
  background-color: #006428;
  color: #fff;
}


select {
    padding: 5px;
    margin: 5px 0;
    min-width: 160px;
    line-height : 1.5em;
    background-image:
        linear-gradient(45deg, transparent 50%, #d2d2d2 50%),
        linear-gradient(135deg, #d2d2d2 50%, transparent 50%),
        linear-gradient(to right, #d2d2d2, #d2d2d2);
    background-position:
        calc(100% - 18px) calc(1em),
        calc(100% - 13px) calc(1em),
        calc(100% - 2.5em) 0em;
    background-size:
        5px 7px,
        5px 7px,
        1px 2.3em;
    background-repeat: no-repeat;
    border-color: #d2d2d2;
}

textarea {
    width : 100%;
    height : 64px;
    border: 1px solid #d2d2d2;
    resize: vertical;
}
textarea.require {
        border : 1px solid #ff0000;
}

input.require {
        border : 1px solid #ff0000;
}
select.require {
        border : 1px solid #ff0000;
}
input[type="submit"].add, input[type="button"].add {
    border-width: 1px;
}
input[type="submit"].upd, input[type="button"].upd {
    border-width: 1px;
    background-color: #6c9bd2;
}
input[type="submit"].del, input[type="button"].del {
    border-width: 1px;
    background-color: #c0c0c0;

}

input[type="submit"].refine {
    width: 80px;
    padding : 8px 5px;
}
input[type="submit"].new, input[type="button"].new {
    padding : 10px 50px;
    min-width: 300px;
    border-style: double;
    border-width: 2px;
}
input[type="submit"].download, input[type="button"].download {
    padding : 10px 10px;
    min-width: 150px;
    border-style: double;
    border-width: 2px;
}
input[type="submit"].pwd, input[type="button"].pwd {
    min-width: 100px;
    border-width: 1px;
}
-->