@import url('https://rsms.me/inter/inter-ui.css');

*
{
    box-sizing: border-box;
}

@keyframes rotateAnimation
{
    0%   {transform: rotate(0deg);}
    100% {transform: rotate(360deg);}
}

@-webkit-keyframes wk-rotateAnimation
{
    0%   {-webkit-transform: rotate(0deg);}
    100% {-webkit-transform: rotate(360deg);}
}

::selection
{
    background: #2D2F36;
}

::-webkit-selection
{
    background: #2D2F36;
}

::-moz-selection
{
    background: #2D2F36;
}

body
{
    background: linear-gradient(to bottom, #258DCA, #A5CF4F) fixed;
    font-family: 'Inter UI', sans-serif;
    margin: 0;
}

#logo
{
    position: fixed;
    top: 25px;
    left: 25px;
    z-index: 999;
}

.page
{
    display: flex;
    position: absolute;
    height: calc(100% - 40px);
    width: calc(100% - 40px);
    flex-direction: column;
    place-content: center;
}

@media (max-width: 767px)
{
    .page
    {
        display: inline-block;
        position: fixed;
        width: 320px;
        height: auto;
        margin-left: 25px;
    }
}

.container
{
    display: flex;
    width: 640px;
    height: 320px;
    margin: 0 auto;
}

@media (max-width: 767px)
{
    .container
    {
        flex-direction: column;
        width: 320px;
        height: 640px;
        margin-top: 200px;
    }
}

@media (max-height: 570px)
{
    .container
    {
        margin-top: 220px;
    }
}

.left
{
    background: white;
    position: relative;
    width: 50%;
    height: calc(100% - 40px);
    top: 20px;
}

@media (max-width: 767px)
{
    .left
    {
        width: calc(100% - 40px);
        height: 150px;
        left: 35px;
    }
}

@media (max-height: 570px)
{
    .left
    {
        display: none;
    }
}

.right
{
    background: #474A59;
    box-shadow: 0px 0px 40px 16px rgba(0,0,0,0.22);
    color: #F1F1F2;
    position: relative;
    width: 50%;
}

@media (max-width: 767px)
{
    .right
    {
        width: 320px;
        height: 280px;
        flex-shrink: 0;
    }
}

.login
{
    font-size: 50px;
    font-weight: 900;
    margin: 50px 40px 40px;
}

@media (max-width: 767px)
{
    .login
    {
        margin: 0px 25px;
    }
}

.eula
{
    color: #999;
    font-size: 14px;
    line-height: 1.5;
    margin: 40px;
}

@media (max-width: 767px)
{
    .eula
    {
        margin: 0px 40px;
    }
}

svg
{
    position: absolute;
    width: 320px;
}


path
{
    fill: none;
    stroke: url(#linearGradient);;
    stroke-width: 4;
    stroke-dasharray: 240 1386;
}

.form
{
    position: absolute;
    margin: 40px;
}

label
{
    color: #c2c2c5;
    display: block;
    font-size: 14px;
    height: 16px;
    margin-top: 20px;
    margin-bottom: 5px;
}

input
{
    background: transparent;
    border: 0;
    color: #f2f2f2;
    width: 100%;
    height: 30px;
    font-size: 20px;
    line-height: 30px;
    outline: none !important;
}

input::-moz-focus-inner
{
    border: 0;
}

#submit
{
    color: #707075;
    margin-top: 45px;
    transition: color 300ms;
}

#submit:focus
{
    color: #f2f2f2;
}

#submit:active
{
    color: #d0d0d2;
}

.tooltip-inner
{
    background-color: #ED0000 !important;
    color: #fff;
}

.tooltip .arrow:before
{
    border-bottom-color:#ED0000 !important;
    border-top-color:#ED0000 !important;
}

#pageMessages
{
    position: fixed;
    top: 15px;
    right: 15px;
    width: 30%;
    z-index: 1;
}

.alert
{
    position: relative;
}

.alert .close
{
    position: absolute;
    top: 5px;
    right: 5px;
    font-size: 1em;
}

.alert .fa
{
    margin-right:.3em;
}

.loading
{
    background-color:transparent !important;
    border:3px solid #258DCA;
    border-top-color: #A5CF4F;
    border-bottom-color: #258DCA;
    border-radius:50%;
    font-size:0;
    margin-top:5px;
    margin-left: 100px;
    padding:0;
    width:30px;
    height:30px;
    animation-name: rotateAnimation;
    animation-duration: 1s;
    animation-delay: 0.2s;
    animation-iteration-count: infinite;
    -webkit-animation-name: wk-rotateAnimation;
    -webkit-animation-duration: 1s;
    -webkit-animation-delay: 0.2s;
    -webkit-animation-iteration-count: infinite;
}
