.form_box table tr th span {
 background-color: #4fabd9;
 font-size: 12px;
}
.form_box table tr th span.nini {
 background-color: #aaa;
}
.form_box > p input {
    width: fit-content;
    display: flex;
    min-width: 300px;
    height: 60px;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.6rem;
    font-weight: bold;
    background: #045143;
    color: #fff;
    border: none;
    border-radius: 5px;
    box-shadow: 0 2px 3px 0 rgb(0 0 0 / 20%);
    position: relative;
    cursor: pointer;
    margin: 0 auto;
    transition: .3s;
}
.form_box > p input.clinic {
    background-color: #33b5a3;
}
.form_box > p input.pharmacy {
    background-color: #1B365D;
}
.form_box > p input.farm {
    background-color: #F08235;
}

.env-warning {
    display: none;
    position: relative;
    margin-top: 0;
    padding: 12px 14px;
    background: #fff3cd;
    border: 1px solid #f5c06f;
    border-radius: 8px;
    color: #856404;
    font-size: 13px;
    line-height: 1.5;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.env-warning.show {
    display: block;
}
.env-warning::before {
    content: "";
    position: absolute;
    top: -8px;
    left: 20px;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid #f5c06f;
}
.env-warning::after {
    content: "";
    position: absolute;
    top: -6px;
    left: 21px;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-bottom: 7px solid #fff3cd;
}
.form_box>p input {
    color: #fff;
}