@import url("https://static.idxmarkets.com/libs/inter/3.19/inter.css");

html {
    font-family: "Inter", sans-serif;
}

@supports (font-variation-settings: normal) {
    html {
        font-family: "Inter var", sans-serif;
    }
}

div.form_Error {
    text-align: left;
    font-size: 1em;
    color: red;
    margin-top: 0.5em;
}

html {
    background-color: #08151c;
}

#logo {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 5em;
    margin-top: 2em;
    margin-left: 3em;
}

div.formfoot {
    margin-top: 15%;
}

div.formsubmit {
    display: inline-block;
    float: right;
    margin-top: -3%;
    align-items: center;
    /*  margin-left:13%;*/
}

div.formleft {
    float: left;
    font-family: "Inter";
    font-weight: 500;
    font-size: 0.75em;
    color: white;
}

form {
    border-radius: 0;
    padding: 1em 1em;
    /*  font-size:14px;*/
    /*  font-weight:bold;*/
    margin: 1em auto;
    width: 40vw;
    max-width: 60em;
}

body {
    min-height: 100%;
    background-repeat: no-repeat;
    font-family: "Calibri", sans-serif;
    background-color: #08151c;
}

.button {
    display: inline-block;
    border-radius: 3px;
    background-color: #12b1dc;
    border: none;
    color: white;
    text-align: center;
    padding: 0.5em 1.5em;
    width: 8em;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    cursor: pointer;
    /*  margin-top: -5%;*/
    font-weight: 600;
    font-size: 1em;
    font-family: "Calibri", sans-serif;
}

.button span {
    cursor: pointer;
    display: inline-block;
    position: relative;
    transition: 0.5s;
}

/*
.button span:after {
  content: '\00bb';
  position: absolute;
  opacity: 0;
  top: 0;
  right: -20px;
  transition: 0.5s;
}
.button:hover span {
  padding-right: 25px;
}
.button:hover span:after {
  opacity: 1;
  right: 0;
}
*/

.button:hover,
.button:focus,
.button:active {
    outline: 0;
    background-color: #3594c9;
}

a:not(.md-button) {
    color: rgba(255, 255, 255, 0.5);
}

a:not(.md-button):hover {
    color: white;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

input {
    -webkit-appearance: none;
    width: 100%;
    border: 0;
    font-family: inherit;
    padding: 0;
    height: 3em;
    font-weight: 500;
    border-bottom: 1.5px solid #858282;
    background: none;
    border-radius: 0;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    margin-top: 8%;
    /*  position: relative;*/
}

input:focus {
    outline: 0;
    border-bottom: 1.5px solid #12b1dc;
}

input:-webkit-:focus {
    outline: 0;
    border-bottom: 1.5px solid #12b1dc;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    /*    -webkit-box-shadow: 0 0 0 30px white inset !important;*/
    outline: 0;
}

input:focus::-webkit-input-placeholder {
    opacity: 0;
    outline: 0;
}

&:focus {
    outline: none;
}

/* STRUCTURE */
.wrapper {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    min-height: 100%;
    padding: 1em;
}

/*federation login dialog wraper*/
#do_login_div {
    width: 50%;
    margin-left: 25%;
    flex-direction: row;
    justify-content: space-around;
}

@media (max-width: 1230px) {
    #do_login_div {
        width: 100%;
        margin-left: 0;
    }
}

div.formContent {
    /*  -webkit-border-radius: 10px 10px 10px 10px;*/
    /*  border-radius: 10px 10px 10px 10px;*/
    background: none;
    padding: 1em;
    position: fixed;
    top: 25%;
    padding: 0px;
    /*  -webkit-box-shadow: 0 30px 60px 0 rgba(0,0,0,0.3);*/
    /*  box-shadow: 0 30px 60px 0 rgba(0,0,0,0.3);*/
    text-align: center;
}

/* Simple CSS3 Fade-in Animation */
@-webkit-keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@-moz-keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.fadeIn {
    opacity: 0;
    -webkit-animation: fadeIn ease-in 1;
    -moz-animation: fadeIn ease-in 1;
    animation: fadeIn ease-in 1;

    -webkit-animation-fill-mode: forwards;
    -moz-animation-fill-mode: forwards;
    animation-fill-mode: forwards;

    -webkit-animation-duration: 1s;
    -moz-animation-duration: 1s;
    animation-duration: 1s;
}

.inputclass {
    font-family: "Calibri", sans-serif;
    font-size: 1em;
    font-weight: 400;
    color: white;
}

#username {
    font-family: "Calibri", sans-serif;
    font-size: 1em;
    font-weight: 400;
    color: white;
}

#password {
    font-family: "Calibri", sans-serif;
    font-size: 1em;
    font-weight: 400;
    color: white;
}

div.main_title {
    text-align: center;
    margin-top: 10em;
    margin-bottom: 5%;

    position: relative;
    height: auto;
    width: 100%;
    z-index: 2;
}

p {
    font-family: "Calibri", sans-serif;
    font-size: 1.25em;
    line-height: 1em;
    font-weight: 500;
    color: #12b1dc;
    margin-bottom: 0em;
}

h1 {
    font-family: "Calibri", sans-serif;
    font-size: 3em;
    color: #12b1dc;
}

#requestaccount {
    float: right;
    right: 0;
    margin-right: 2em;
    margin-top: 2em;
    position: fixed;
}

#requestlink {
    text-decoration: none;
    font-family: "Calibri", sans-serif;
    font-size: 1em;
    font-weight: 500;
    transition-duration: 0.5s;
}

#requestlink:hover {
    text-decoration: none;
    font-family: "Calibri", sans-serif;
    font-size: 1em;
    font-weight: 500;
    color: #12b1dc;
}

a:hover {
    text-decoration: none;
    color: #12b1dc;
}

.footer {
    position: absolute;
    float: left;
    width: 100%;
    bottom: 1em;
}

.copyright {
    float: left;
    display: inline-block;
    width: 100%;
    bottom: 0;
    position: absolute;
}

#copyrighttext {
    line-height: 1.5em;
    text-align: left;
    padding-top: 0;
    padding-left: 2em;
    padding-bottom: 0;
    color: #858282;
    font-size: 0.8em;
    float: left;
    font-weight: 500;
    font-family: "Calibri", sans-serif;
}

#privacytext {
    line-height: 1.5em;
    text-align: left;
    padding-top: 0;
    padding-right: 2em;
    padding-bottom: 0;
    color: #858282;
    font-size: 0.8em;
    float: right;
    font-weight: 500;
    font-family: "Calibri", sans-serif;
}

* {
    box-sizing: border-box;
}

/* Create two equal columns that floats next to each other */
.column {
    float: left;

    padding: 10px;
}

#picture-side {
    background-image: url(https://www.idxmarkets.com/media/files/website-bg.jpg);
    background-size: cover;
    width: 40%;
}

#login-side {
    width: 60%;
}

/* Clear floats after the columns */
.row:after {
    content: "";
    display: table;
    clear: both;
}

.row {
    height: 100%;
    width: 100%;
    margin: 0;
}

@media (max-width: 720px) {
    #logo {
        width: 4em;
    }

    form {
        padding-left: 1em;
        padding-right: 1em;
        width: 100%;
    }

    #copyrighttext {
        width: 100%;
        text-align: center;
        float: left;
        padding: 0;
    }

    #privacytext {
        text-align: center;
        width: 100%;
        float: left;
        padding: 0;
    }

    #login_button {
        margin-top: 2em;
    }

    .formsubmit {
        width: 100%;
    }

    #login-side {
        width: 100%;
    }

    #picture-side {
        width: 100%;
        display: none;
    }

    div.main_title {
        width: 100%;
    }

    div.formContent {
        width: 80%;
    }
}

@media (max-height: 670px) {
    div.main_title {
        width: 100%;
    }
}

/* forget style example*/

#forget_title {
    /*  margin-top: 15em;*/
}

#forget_email {
    font-family: "Calibri", sans-serif;
    font-size: 1em;
    font-weight: 400;
    color: white;
    width: 100%;
}

#forget_sent_title {
    /*  margin-top:220px;*/
}

#forget_sent_message {
    width: 100%;
    text-align: left;
    font-size: 1em;
    color: white;
}

/* reset style example */
#reset_page {
}

#reset_formError {
}

.recover {
    font-weight: 500;
    font-family: "Calibri", sans-serif;
    font-size: 1.25em;
    /*    line-height: 1em;*/
    /*    margin-bottom: 2em;*/
}

#mainpagebutton {
    display: inline-block;
    border-radius: 5em;
    background-color: #f0f0f0;
    border: none;
    color: #858282;
    text-align: center;
    padding: 0.5em 1.5em;
    width: 12em;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    cursor: pointer;
    /*  margin-top: -5%;*/
    font-weight: 500;
    font-size: 0.85em;
    font-family: "Inter";
}

#mainpagebutton:hover,
#mainpagebutton:focus,
#mainpagebutton:active {
    outline: 0;
    background-color: #faeb38;
}

#reset_pass {
    font-family: "Inter";
    font-size: 1em;
    font-weight: 400;
    color: #858282;
}

#reset_pass_again {
    font-family: "Inter";
    font-size: 1em;
    font-weight: 400;
    color: #858282;
}
.sk-fading-circle {
    margin: 100px auto;
    position: relative;
}

.sk-fading-circle-big {
    width: 60px;
    height: 60px;
}

.sk-fading-circle-small {
    width: 30px;
    height: 30px;
    margin: 0px;
}

.sk-fading-circle .sk-circle {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

.sk-fading-circle .sk-circle:before {
    content: "";
    display: block;
    margin: 0 auto;
    width: 15%;
    height: 15%;
    background-color: #858282;
    border-radius: 100%;
    -webkit-animation: sk-circleFadeDelay 1.2s infinite ease-in-out both;
    animation: sk-circleFadeDelay 1.2s infinite ease-in-out both;
}

.sk-fading-circle .sk-circle2 {
    -webkit-transform: rotate(30deg);
    -ms-transform: rotate(30deg);
    transform: rotate(30deg);
}

.sk-fading-circle .sk-circle2 {
    -webkit-transform: rotate(30deg);
    -ms-transform: rotate(30deg);
    transform: rotate(30deg);
}

.sk-fading-circle .sk-circle3 {
    -webkit-transform: rotate(60deg);
    -ms-transform: rotate(60deg);
    transform: rotate(60deg);
}

.sk-fading-circle .sk-circle4 {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}

.sk-fading-circle .sk-circle5 {
    -webkit-transform: rotate(120deg);
    -ms-transform: rotate(120deg);
    transform: rotate(120deg);
}

.sk-fading-circle .sk-circle6 {
    -webkit-transform: rotate(150deg);
    -ms-transform: rotate(150deg);
    transform: rotate(150deg);
}

.sk-fading-circle .sk-circle7 {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.sk-fading-circle .sk-circle8 {
    -webkit-transform: rotate(210deg);
    -ms-transform: rotate(210deg);
    transform: rotate(210deg);
}

.sk-fading-circle .sk-circle9 {
    -webkit-transform: rotate(240deg);
    -ms-transform: rotate(240deg);
    transform: rotate(240deg);
}

.sk-fading-circle .sk-circle10 {
    -webkit-transform: rotate(270deg);
    -ms-transform: rotate(270deg);
    transform: rotate(270deg);
}

.sk-fading-circle .sk-circle11 {
    -webkit-transform: rotate(300deg);
    -ms-transform: rotate(300deg);
    transform: rotate(300deg);
}

.sk-fading-circle .sk-circle12 {
    -webkit-transform: rotate(330deg);
    -ms-transform: rotate(330deg);
    transform: rotate(330deg);
}

.sk-fading-circle .sk-circle2:before {
    -webkit-animation-delay: -1.1s;
    animation-delay: -1.1s;
}

.sk-fading-circle .sk-circle3:before {
    -webkit-animation-delay: -1s;
    animation-delay: -1s;
}

.sk-fading-circle .sk-circle4:before {
    -webkit-animation-delay: -0.9s;
    animation-delay: -0.9s;
}

.sk-fading-circle .sk-circle5:before {
    -webkit-animation-delay: -0.8s;
    animation-delay: -0.8s;
}

.sk-fading-circle .sk-circle6:before {
    -webkit-animation-delay: -0.7s;
    animation-delay: -0.7s;
}

.sk-fading-circle .sk-circle7:before {
    -webkit-animation-delay: -0.6s;
    animation-delay: -0.6s;
}

.sk-fading-circle .sk-circle8:before {
    -webkit-animation-delay: -0.5s;
    animation-delay: -0.5s;
}

.sk-fading-circle .sk-circle9:before {
    -webkit-animation-delay: -0.4s;
    animation-delay: -0.4s;
}

.sk-fading-circle .sk-circle10:before {
    -webkit-animation-delay: -0.3s;
    animation-delay: -0.3s;
}

.sk-fading-circle .sk-circle11:before {
    -webkit-animation-delay: -0.2s;
    animation-delay: -0.2s;
}

.sk-fading-circle .sk-circle12:before {
    -webkit-animation-delay: -0.1s;
    animation-delay: -0.1s;
}

@-webkit-keyframes sk-circleFadeDelay {
    0%,
    39%,
    100% {
        opacity: 0;
    }

    40% {
        opacity: 1;
    }
}

@keyframes sk-circleFadeDelay {
    0%,
    39%,
    100% {
        opacity: 0;
    }

    40% {
        opacity: 1;
    }
}

#twoFactorMsg {
    color: white;
}
