html {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

body {
    font-family: "open sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
    /* font-family: "Inter", "Source Sans Pro", "Helvetica Neue", Arial, sans-serif; */
    font-size: 13px;

    color: #676a6c;
    background-color: #e8ebef;
    /*#e8ebef*/

    /* color: #e2e2e2;
    background-color: #335167; */

    /* background: url('https://picsum.photos/1920?blur') bottom left no-repeat; */
    padding: 0px;
    margin: 0px;
    -webkit-touch-callout: none;

    height: 100%;
}

* {
    box-sizing: border-box;
}

hr {
    box-sizing: content-box;
    overflow: visible;
    margin-top: 16px;
    margin-bottom: 16px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    border: 0;
    height: 1px;
    background: rgba(0, 0, 0, 0.1);
    /* baackground: linear-gradient(0.49turn, transparent, #b3b3b3, transparent) */
}

.text-grey-darker {
    color: #b3b3b3 !important;
}

.text-center {
    text-align: center !important;
}

.text-right {
    text-align: right !important;
}

.copyright {
    position: absolute;
    bottom: 2px;
    width: 200px;
    left: 50%;
    margin-left: -100px !important;
}

a {
    color: #3c769d;
}

p,
.div-p {
    display: block;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
}

p.title {
    margin-bottom: 20px;
}

p.title strong {
    display: block;
    margin: 4px;
    font-size: 20px;
}

p.error-message {
    color: rgb(183, 32, 32);
}

p.info-label {
    font-size: 1.2em;
    color: #b10b95;
}

#logininput:required {
    border-left-color: #00b136;
}

#login input:invalid {
    border-left-color: red;
}

#login form p {
    margin: 15px 0px;
}

input {
    font-family: "Lucida Grande", Tahoma, Verdana, sans-serif;
    font-size: 14px;
}

#cc {
    letter-spacing: 10px;
}

#mailc {
    letter-spacing: 10px;
}

input[type="email"],
input[type="password"],
input[type="text"] {
    padding: 0 10px;
    width: 100%;
    height: 34px;
    color: #404040;
    background: white;
    border: 1px solid;
    border-color: #c4c4c4 #d1d1d1 #d4d4d4;
    border-radius: 2px;
    /* outline: 4px solid #525f6d; */
    /* outline: 5px solid #dce2ea; */
    -moz-outline-radius: 3px;
    -webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.12);
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.12);
    box-sizing: border-box;
}

input[type="email"],
input[type="password"],
input[type="text"] {
    border-color: #7dc9e2;
    outline-color: #dceefc;
    outline-offset: 0;
}

input[type="submit"] {
    width: 100%;
    height: 29px;
    font-size: 12px;
    font-weight: bold;
    color: #527881;
    text-shadow: 0 1px #e3f1f1;
    background: #cde5ef;
    border: 1px solid;
    border-color: #b4ccce #b3c0c8 #9eb9c2;
    border-radius: 16px;
    outline: 0;
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
    background-image: -webkit-linear-gradient(top, #edf5f8, #cde5ef);
    background-image: -moz-linear-gradient(top, #edf5f8, #cde5ef);
    background-image: -o-linear-gradient(top, #edf5f8, #cde5ef);
    background-image: linear-gradient(to bottom, #edf5f8, #cde5ef);
    -webkit-box-shadow: inset 0 1px white, 0 1px 2px rgba(0, 0, 0, 0.15);
    box-shadow: inset 0 1px white, 0 1px 2px rgba(0, 0, 0, 0.15);
    margin-top: 20px;
    box-sizing: border-box;
}

input[type="submit"]:active {
    background: #cde5ef;
    border-color: #9eb9c2 #b3c0c8 #b4ccce;
    -webkit-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.2);
    box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.2);
}

input[type="email"]:disabled,
input[type="password"]:disabled,
input[type="text"]:disabled {
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.12);
    background-color: #f2f2f2;
}

input[type="submit"]:disabled {
    background: #d1d5d6;
    border-color: #9eb9c2 #b3c0c8 #b4ccce;
    -webkit-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.2);
    box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.2);
}

.box-spinner {
    display: none;
    height: 52px;
}
.spinner-dual-ring {
    display: inline-block;
    width: 52px;
    height: 52px;
}

.spinner-dual-ring:after {
    content: "";
    display: block;
    width: 40px;
    height: 40px;
    margin: 1px;
    border-radius: 50%;
    border: 5px solid rgb(22, 115, 186);
    border-color: rgb(57, 138, 214) #00000010 rgb(57, 138, 214) #00000010;
    border-bottom: 5px solid #b2d349;
    animation: lds-dual-ring 1.2s linear infinite;
}

@keyframes spinner-dual-ring {
    0% {
        transform: rotate(0deg);
    }

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

.lds-dual-ring {
    display: none;
    width: 58px;
    height: 58px;
}

.lds-dual-ring:after {
    content: " ";
    display: block;
    width: 40px;
    height: 40px;
    margin: 1px;
    border-radius: 50%;
    border: 5px solid rgb(57, 138, 214);
    border-color: rgb(57, 138, 214) transparent rgb(57, 138, 214) transparent;
    animation: lds-dual-ring 1.2s linear infinite;
}

@keyframes lds-dual-ring {
    0% {
        transform: rotate(0deg);
    }

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

#boxrecover {
    display: none;
}

#cc {
    text-transform: uppercase;
}

.captcha-image {
    width: 260px;
    height: 70px;
}

#boxcc {
    min-height: 102px;
}

.image-ok {
    font-size: 6em;
    color: #fff;
    border-radius: 50px;
    width: 100px;
    display: inline-block;
    height: 100px;
    background: #588458;
}

.text-success {
    color: rgb(54, 124, 54) !important;
}
.ux-icon {
    font-size: 1rem;
    color: #757575;
    display: inline-block;
    width: 20px;
    height: 19px;
    padding: 0 4px 0 4px;
}
.ux-pass-content {
    text-align: left;
    padding: 12px;
    border: 1px solid #d0d0d0;
    border-top: 0px;
    border-radius: 0 0 4px 4px;
    box-shadow: 2px 2px 2px 0px rgba(64, 64, 64, 0.1);
}

.ux-criteria-rules-item {
    margin-bottom: 6px;
}
.ux-criteria-progress .ux-criteria-progress-label {
    font-weight: bold;
    font-size: 1em;
}
.ux-criteria-progress-bar {
    width: 100%;
    height: 12px;
    border-radius: 4px;
    background-color: #eee;
    margin-top: 2px;
}
.ux-criteria-progress-bar .ux-progress-fill {
    display: block;
    width: 1%;
    background-color: #db0215;
    height: 12px;
    border-radius: 4px;
}

.ux-criteria-progress-bar .ux-pass-blank {
    background-color: red;
}
.ux-criteria-progress-bar .ux-pass-very-week {
    background-color: #db0215;
}

.ux-criteria-progress-bar .ux-pass-week {
    background-color: #f0b619;
}

.ux-criteria-progress-bar .ux-pass-regular {
    background-color: #e7e41b;
}
.ux-criteria-progress-bar .ux-pass-strong {
    background-color: #7ab93e;
}
.ux-criteria-progress-bar .ux-pass-very-strong {
    background-color: #25ad0a;
}

[class*="col-"] {
    width: 100%;
}

.container {
    display: flex;
    height: 100vh;
    justify-content: center;
    align-items: top;
}

.container .box-pre {
    display: none;
}

#login {
    padding: 20px;
    text-align: center;
    background: white;
    border-radius: 4px;
    min-width: 300px;
    max-width: 380px;
    margin: 10px auto;
}

.masnet-logo {
    margin-bottom: 30px;
}

.masnet-logo img {
    width: 160px;
    border: 0px;
}

@media only screen and (min-width: 150px) and (max-width: 530px) {
    body {
        background: white;
    }

    .container {
        display: flex;
        height: 100vh;
        justify-content: center;
        align-items: top;
    }

    .container .box-pre {
        display: none;
    }

    #login {
        padding: 20px;
        text-align: center;
        background: white;
        border-radius: 4px;
        min-width: 300px;
        max-width: 380px;
        margin: 10px auto;
    }

    .masnet-logo {
        margin-bottom: 30px;
    }

    .masnet-logo img {
        width: 130px;
        border: 0px;
    }
}

.anim_shake {
    animation: anim_shake 0.82s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
    perspective: 1000px;
}

@keyframes anim_shake {
    10%,
    90% {
        transform: translate3d(-1px, 0, 0);
    }

    20%,
    80% {
        transform: translate3d(2px, 0, 0);
    }

    30%,
    50%,
    70% {
        transform: translate3d(-4px, 0, 0);
    }

    40%,
    60% {
        transform: translate3d(4px, 0, 0);
    }
}

header {
    display: flex;
    align-items: center;
    overflow: hidden;
    box-sizing: border-box;
    background-color: #1d527b;
    color: #f7f7f7;
    height: 48px;
}
header .mux-header-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    text-align: center;
    overflow: none;
    height: 100%;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5em;
}
header .mux-header-logo img {
    height: 48px;
}
header .mux-header-logo img:hover {
    cursor: pointer;
}

header .mux-header-space {
    flex: 1;
    display: flex;
    overflow: hidden;
    box-sizing: border-box;
    height: 100%;
}

header .mux-header-content form {
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    height: 100%;
    overflow: hidden;
}

header .mux-header-content form * {
    display: inline-block;
}
header .mux-header-content form input {
    margin-left: 15px;
}
header .mux-header-content form input[type="email"],
header .mux-header-content form input[type="password"],
header .mux-header-content form input[type="text"] {
    padding: 0 10px;
    width: 140px;
    height: 28px;
    color: #404040;
    background: white;
    border: 1px solid;
    border-color: #c4c4c4 #d1d1d1 #d4d4d4;
    border-radius: 2px;
    /* outline: 4px solid #525f6d; */
    /* outline: 5px solid #dce2ea; */
    -moz-outline-radius: 3px;
    -webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.12);
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.12);
    box-sizing: border-box;
    font-size: 12px;
}
header .mux-header-content form input[type="email"] {
    width: 170px;
}
header .mux-header-content form input[type="submit"] {
    width: 100px;
    margin: 0px;
    margin-left: 15px;
}

header .mux-header-content form .box-spinner {
    width: 20px;
    height: 20px;
    vertical-align: middle;
}
header .mux-header-content form .box-spinner .spinner-dual-ring {
    width: inherit;
    height: inherit;
}
header .mux-header-content form .box-spinner .spinner-dual-ring:after {
    content: "";
    display: block;
    width: 15px;
    height: 15px;
    margin: 1px;
    border-radius: 50%;
    border: 2px solid rgb(22, 115, 186);
    border-color: rgb(57, 138, 214) #00000010 rgb(57, 138, 214) #00000010;
    border-bottom: 2px solid #b2d349;
    animation: lds-dual-ring 1.2s linear infinite;
}

header .mux-header-content form #recover {
    color: #e2e7ff;
    margin: 0 15px;
}
