/* OLG vendor theme — desktop register (form validation states).
   Extracted verbatim from the vendor's inline <style> blocks; only asset
   URLs are rewritten to the local mirror under /olg. Do not hand-edit:
   site-specific overrides belong in olg-custom.css. */

.form-control[readonly] {
            background-color: #fff;
            border-color: #707070;
            -moz-appearance: none;
            -webkit-appearance: none;
            color: #000;
        }

        .select_box:after {
            border-left: 6px solid transparent;
            border-right: 6px solid transparent;
            border-top: 6px solid #000;
            position: absolute;
            top: 15px;
            right: 15px;
            content: "";
        }

        .background-top {
            background: url(https://files.sitestatic.mitrazeus.com/olg/20260910-113808/olg/asset/images/main-bg.jpg) no-repeat center center fixed;
            -webkit-background-size: cover;
            -moz-background-size: cover;
            -o-background-size: cover;
            background-size: cover;
        }

        .form-control.success {
            border-color: #04AA6D !important;
        }

        .form-control.error {
            border-color: #f44336 !important;
        }

        .success-message {
            color: #04AA6D;
            font-size: 14px;
            margin-top: 6px;
        }

        .checking-message {
            color: #FDC23A;
            font-size: 14px;
            margin-top: 6px;
        }

        .spinner {
            display: inline-block;
            width: 12px;
            height: 12px;
            border: 2px solid #FDC23A;
            border-top-color: transparent;
            border-radius: 50%;
            animation: spin 0.6s linear infinite;
            margin-right: 5px;
        }

        @keyframes  spin {
            to {
                transform: rotate(360deg);
            }
        }
