@charset "utf-8";

table.form{
    margin-top: 1em;
    width: 100%;
    border-collapse: collapse;
    border: none;
}

table.form th{
    font-weight: normal;
    background-color: #f0f0f0;
    padding: 10px;
    text-align: left;
    white-space: nowrap;
}

table.form td{
    padding: 10px;
    background-color: #fff;
    width: 100%;
}

input.button{
    background-color: #008b37;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    margin-top: 1em;
}

a.button_back{
    background-color: orange;
    color: #000;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    margin-top: 1em;
    text-decoration: none;
}

a.button_back:hover{
    text-decoration: none;
}

textarea,
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
input[type="date"],
input[type="time"],
input[type="datetime-local"] {
    width: 100%;
    border: 1px solid #606060;
    padding: 4px 4px;
}

strong.required{
    color: red;
}

p.error{
    color: red;
    font-weight: bold;
}



