/* ===== FAIL SAFE TECHNOLOGIES FORM CONTAINER STYLE SHEET ===== */
        .FST_login_container {
            border-radius: 10px;
            background-color: rgba(0,0,88,0.95);
            border:8px solid #FF9D00;
            padding: 20px;
            color:#fff;
            width:85%;
            margin:auto;
        }

        .FST_login_container * {
            box-sizing: border-box;
            font-size:1.05em;
        }

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

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

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

        .FST_login_container input[type=submit]:hover {
            background-color: #000;
            border: 2px solid #ff9D00;
            border-radius: 4px;
            color:#FF9D00;
        }

        .FST_login_container .title {
            text-align:center;
            font-size:1.5em;
            font-weight:bold;
        }


        /* 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) {
            .FST_login_container input[type=submit] {
                width: 100%;
                margin-top: 0;
            }
        }
