
input[type="text"], input[type="password"] {
    padding: 0 0 0 5px;
    min-height: 30px;
    min-width: 300px;
    border-width: 1px;
}

input:-moz-read-write {
    border-style: none none solid none;
}

input:read-write {
    border-style: none none solid  none;
}

input[readonly] {
    border-style: none none none none;
}
input[disabled] {
    background-color: rgba(240,240,240,0.0);
    border-style: none none none none;
}

input:focus, textarea:focus {
    outline: none;
    border-color: rgb(100,100,100);
    font-weight: normal;
    color:#000000;
}
textarea {
    width:700px;
    min-height: 40px;
    padding:5px;
}

textarea[readonly] {
    background-color: rgba(240,240,240,0.0);
}
.custCombo {
    position: relative;
    display: inline-block;
}
.custCombo select {
    padding-left: 5px;
    padding-right: 30px;
    background: url(../img/combo.png) no-repeat right rgba(254, 254, 254,0);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    cursor: pointer;
    min-height: 30px;
}
.custCombo select:disabled {
    border-style: none none none none;
    cursor: default;
    background: rgba(254, 254, 254,0);
}

select:focus {
    outline: none;
    border-color: rgb(100,100,100);
    font-weight: normal;
}

.sample{
    border: 1px solid #aaaaaa;
    padding:5px;
    width:685px;
}
.floatCenter{
    margin-top: 30px;
    margin-left: 50%;
    transform: translate(-50%);
    width: fit-content;
}

.formBtn {
    position: relative;
    color: rgb(255,255,255);
    border: 1px solid rgb(130,185,40);
    background-color: rgb(140,195,50);
    padding: 5px 15px 7px 15px;
    cursor: pointer;
    font-size: 18px;
    width: 150px;
}
.formBtn:hover {
    background:rgba(255,255,255,0.4);
    color: rgb(130,185,40);
}

.formBtn:active {
    background-color: rgb(160,215,70);
    border-top: none;
    border-bottom: none;
}
