        body {
            margin: 0;
            padding: 0;
            background: #000;
            color: #fff;
            height: 100%;
            min-height: 100%;
            overflow: hidden;
            font-family: 'Open Sans', sans-serif;
        }

        body .mask {
            position: absolute;
            height: 100%;
            width: 100%;
            background: white;
            z-index: 1;
        }

        body .mask .modal {
            width: 500px;
            height: 600px;
            background: white;
            border-radius: 5px;
            position: absolute;
            left: 50%;
            top: 40%;
            transform: translate(-50%, -50%);

        }

        body .mask .modal .sellaxtrading-logo {
            width: 100%;
            height: 25%;
            position: relative;
            left: 50%;
            top: 220px;
            overflow: hidden;
            transform: translate(-50%, -50%);
            background-repeat: no-repeat;
            background-position: center center;
            background-size: contain;
            background-image: url(/images/xtrading/sellaxtrading-logo-27-bk.png);
        }

        body .mask .modal .circle {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            position: relative;
            left: 95%;
            top: 135px;
            overflow: hidden;
            transform: translate(-50%, -50%);
            background-repeat: no-repeat;
            background-position: center center;
            background-size: cover !important;
            background-image: url(/images/logo/icon.png);
        }

        body .mask .modal .login {
            position: relative;
            top: 100px;
        }

        body .mask .modal .login div {
            display: flex;
            flex-direction: column;
            align-items: center;
            width: 100%;
            min-height: 120px;
            color: black;
        }

        body .mask .modal .login h1 {
            margin: 0;
            padding: 0;
            margin-top: 15px;
            font-family: arial;
            color: #000;
            letter-spacing: 1px;
            text-align: center;
        }

        body .mask .modal .login h5 {
            margin: 0;
            padding: 0;
            margin-top: 10px;
            font-family: arial;
            color: #fff;
            text-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
            letter-spacing: 1px;
            text-align: center;
        }

        body .mask .modal .login input {
            width: 260px;
            margin-top: 15px;
            outline: none;
            padding: 10px;
            font-size: 13px;
            border: 1px solid rgba(0, 0, 0, 0.3);
            border-radius: 4px;
            -webkit-transition: box-shadow 0.5s ease;
            -moz-transition: box-shadow 0.5s ease;
            -o-transition: box-shadow 0.5s ease;
            transition: box-shadow 0.5s ease;
        }

        body .mask .modal .login input:focus {
            /* box-shadow: inset 0 -5px 45px rgba(100, 100, 100, 0.4), 0 1px 1px rgba(255, 255, 255, 0.2);
                                                            */
        }

        body .mask .modal .login button {
            background: #51C4F2;
            text-align: center;
            border: solid 2px #fff;
            margin-top: 25px;
            width: 275px;
            color: #fff;
            line-height: 25px;
            border-radius: 20px 20px 20px 20px;
            outline: none;
        }

        body .mask .modal .login button:hover {
            background-color: #043c7b;
        }

        .form-container {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
        }

        input:focus {
            border-color: #007bff;
            outline: none;
            box-shadow: 0 0 10px rgba(0, 123, 255, 0.5);
        }

        .error-message-container {
            display: flex;
            align-items: center;
            margin-top: 15px;
        }

        #error-message {
            font-size: medium;
            color: rgb(232 16 16);
        }

        .appear {
            display: block;
            -webkit-animation: fadeInFromNone 1s ease-out;
            -moz-animation: fadeInFromNone 1s ease-out;
            -o-animation: fadeInFromNone 1s ease-out;
            animation: fadeInFromNone 1s ease-out;
        }

        .loader-container{
            position: absolute ;
            top:0;
            left:0;
            z-index: 997;
            width: 100%;
            height: 100vh;
            background-color: rgba(0,0,0,0.6)
        }

        .loader {
            position: absolute;
            top: 0;
            left: 0;
            z-index: 998;
            /* border: 10px solid ##023a78;*/
            border-top: 7px solid #11b9f3; /* Blue */
            border-radius: 50%;
            width: 120px;
            height: 120px;
            animation: spin 1s linear infinite;
        }

        .loader-text {
            position: absolute;
            top: 0;
            left: 0;
            z-index: 999;
            color: white;
            animation: pulse 2s ease infinite;
        }


        @keyframes spin {
            0% {
                transform: rotate(0deg);
            }

            100% {
                transform: rotate(360deg);
            }
        }

        @keyframes pulse {
            0% {
               opacity: 0;
            }

            50% {
                opacity: 1;
            }

            100% {
                opacity: 0;
            }
        }


        @-webkit-keyframes fadeInFromNone { 
            0% {
                display: none;
                opacity: 0;
            }

            1% {
                display: block;
                opacity: 0;
            }

            100% {
                display: block;
                opacity: 1;
            }
        }

        @-moz-keyframes fadeInFromNone {
            0% {
                display: none;
                opacity: 0;
            }

            1% {
                display: block;
                opacity: 0;
            }

            100% {
                display: block;
                opacity: 1;
            }
        }

        @-o-keyframes fadeInFromNone {
            0% {
                display: none;
                opacity: 0;
            }

            1% {
                display: block;
                opacity: 0;
            }

            100% {
                display: block;
                opacity: 1;
            }
        }

        @keyframes fadeInFromNone {
            0% {
                display: none;
                opacity: 0;
            }

            1% {
                display: block;
                opacity: 0;
            }

            100% {
                display: block;
                opacity: 1;
            }
        }

                  


