<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

.ca-bg-blue {
    background-color: #323e48;
    border-color: #323e48;
}

input[type=text], input[type=tel], input[type=password], input[type=checkbox], input[type=number], select, textarea, div.richify {
    /*background-color: #f7f7f7;
    border: 1px solid #d3d3d3;
    color: #333333;
    padding: 4px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    font-family: inherit;
    font-size: 10pt;*/
}

/*input[type=checkbox] {
    height: initial;
}
*/
input[type=color] {
    height: 21px;
}

input[type=text]:disabled, input[type=password]:disabled, select:disabled, textarea:disabled {
    background-color: #dddddd;
    color: #333333;
}

input[type=text], input[type=number], input[type=tel], input[type=password], select, textarea {
    /*width: 300px;*/
}

input[type=submit], input[type=button] {
    padding: 5px 15px;
    margin: 3px;
    border: 2px solid #77b32a;
    background-color: #FFF;
    color: #323e48;
    -webkit-border-radius: 50px;
    border-radius: 50px;
    -webkit-appearance: none;
    font-family: inherit;
}


    input[type=submit]:hover, input[type=button]:hover {
        cursor: pointer;
        background-color: #323e48;
        border-color: #323e48;
        color: #FFF;
        font-weight: bold;
    }

    input[type=submit]:active, input[type=button]:active {
        cursor: pointer;
        background-color: #323e48;
        /* Changed from orange to green */ color: #77b32a;
        /* Text color changed to blue as requested */
    }

    input[type=submit][disabled=disabled] {
        color: #ffffff;
        background: #ccc;
        border: none;
        cursor: default;
    }
</pre></body></html>