@import url('https://fonts.googleapis.com/css2?family=Titillium+Web:ital,wght@0,200;0,300;0,400;0,600;0,700;0,900;1,200;1,300;1,400;1,600;1,700&display=swap');

body {
    background-image: url('../images/StarCitizen_2024-11-16_02-51-17.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
    font-family: "Titillium Web", sans-serif;
    font-size: 14px;
    font-weight: 300;
    color: #FFF;
}

#primary {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    justify-items: flex-end;
    height: 80vh;
}

.login-box {
    width: 100%;
    box-sizing: border-box;
}

.login-box .box {
    position: relative;
    background-color: rgba(0,0,0,0.2);
    padding: 10px 20px 10px 30px;
    width: 100%;
    /* height: 200px; */

    /* -webkit-mask-image: url('../images/login-box-cut.svg');
    mask-image: url('../images/login-box-cut.svg');
    mask-position: right bottom; */

    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-sizing: border-box;
}

.login-box .box::after {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    display: block;
    content: '';
    width: 100%;
    height: 100%;
    border-width: 2px 23px 23px 2px;
    border-style: solid;
    border-color: #FFF;
    box-sizing: border-box;

    border-image-slice: 2 23 23 2;
    border-image-source: url('../images/login-box-border.svg');
}

.login-box .box .side-text {
    position: absolute;
    bottom: 0px;
    left: 0px;
    transform: rotate(-90deg) translateY(100%);
    transform-origin: bottom left;
    font-size: 7px;
    min-width: 150px;
    
    
    /* display: flex; */
    border-bottom: 1px solid #FFF;
    
    padding-right: 120px;
    box-sizing: border-box;
}

.login-box .box .side-text div {
    padding: 5px 10px;
}

.login-box .box .side-text .name {
    color: #000;
    background-color: #FFF;
    transform-origin: bottom left;
    text-wrap: nowrap;
    font-weight: bold;
}

.login-box .box .side-text .numbers {
    position:absolute;
    right: 0px;
    top: 0px;
    width: 120px;
    box-sizing: border-box;
    transform-origin: top left;
    
}

.login-box .box .inner {
    display: flex;
    height: 100%;
}

.login-box .box .inner div {
    flex: 1 0 0%;
    width: 100%;
    max-width: 100%;
}

.login-box .box .inner .text {
    padding: 0px 25px;
    max-width: 150px;
    line-height: 1.3;
    font-size: 12px;
    font-weight: 300;
    background-image: url('../images/dots-frame.svg'), url('../images/dots-frame.svg'), url('../images/dots-frame.svg'), url('../images/dots-frame.svg');
    background-position: top left, top right, bottom left, bottom right;
    background-repeat: no-repeat;
    box-sizing: border-box;
}

.login-box .box .inner .text a {
    color: rgba(255,255,255,0.6);
}

.login-box .box .inner .next {
    display: flex;
    flex-direction: column-reverse;
    align-items: flex-end;
    justify-items: flex-end;
}

.login-box .box .inner .next div {
    flex: 0 0 auto;
}

.login-box .box .inner .next .dots {
    margin-bottom: auto;
    min-height: 70px;
    background-position: top right;
    background-image: url('../images/login-dots.svg');
    background-repeat: no-repeat;
}

.login-box .box .inner .next a {
    display: inline-block;
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 600;
    color: #FFF;
    border-bottom: 1px solid #FFF;
    margin-bottom: 5px;
    text-align: right;
}

.login-box .box .inner .next .serial {
    text-align: right;
    background-image: url('../images/login-qr.svg');
    background-position: top right;
    background-repeat: no-repeat;
    background-size: 170px;
    padding-top: 20px;
    font-size: 8px;

}