/* ===== TM FORM CONTAINER STYLE SHEET ===== */
        .TM_form_container {
            border-radius: 10px;
            background-color: rgba(89,0,89,0.9);
            border:4px solid #ddd;
            padding: 20px;
            color:#fff;
        }

        .TM_form_container * {
            box-sizing: border-box;
        }

        .TM_form_container .digitalHoney {
            display:none;
        }

        .TM_form_container input[type=text], .TM_form_container input[type=date], .TM_form_container input[type=password], .TM_form_container select, .TM_form_container textarea {
            width: 100%;
            padding: 12px;
            border: 1px solid #ccc;
            border-radius: 4px;
            resize: vertical;
            color:#000;
        }

        .TM_form_container label {
            padding: 12px 12px 12px 0;
            display: inline-block;
            color:#fff;
        }

        .TM_form_container input[type=submit] {
            background-color: #ddd;
            color: #000;
            padding: 12px 20px;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            float: right;
        }

        .TM_form_container input[type=submit]:hover {
            background-color: #000;
            color:#fff;
        }

        .TM_col-25 {
            float: left;
            width: 25%;
            margin-top: 6px;
        }

        .TM_col-75 {
            float: left;
            width: 75%;
            margin-top: 6px;
        }

        /* Clear floats after the columns */
        .TM_row:after {
            content: "";
            display: table;
            clear: both;
        }

        #response_message {
            display:none;
        }


        /* Responsive layout - when the screen is less than 600px wide, make the two columns stack on top of each other instead of next to each other */
        @media screen and (max-width: 600px) {
            .TM_col-25, .TM_col-75, .TM_form_container input[type=submit] {
                width: 100%;
                margin-top: 0;
            }
        }
