/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */
.wrap {
    max-width: 800px;
    margin: 0 auto;
}

h2 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
}

.form-table {
    width: 100%;
    border-collapse: collapse;
}

.form-table th,
.form-table td {
    padding: 10px;
    vertical-align: top;
    border: 1px solid #ccc;
}

.form-table th {
    font-weight: bold;
    background-color: #f5f5f5;
}

.form-field label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.form-field input[type="text"],
.form-field textarea {
    width: 100%;
    max-width: 600px;
    padding: 5px;
    border: 1px solid #ccc;
}

.form-field textarea {
    height: 100px;
}

.form-required label:after {
    content: " *";
    color: red;
    font-weight: bold;
}

.button {
    display: inline-block;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    line-height: 1;
    color: #fff;
    background-color: #007cba;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    cursor: pointer;
}
#my-custom-box {
    border: 1px solid #0073aa;
    background-color: #e5f5fc;
    padding: 20px;
    margin: 20px 0;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}