body {
    padding-top: 50px;
}


@font-face {
    font-family: 'Segoe UI Regular';
    src: url('/fonts/Segoe UI Regular.ttf');
}



.popup {
    align-items: center;
    background-color: #00000080;
    /* display: flex; */
    display: none;
    height: 100dvh;
    left: 0;
    justify-content: center;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}
/* universal style for popup things */
.popup .container {
    align-items: center;
    background-color: #48494a;
    /* display: flex; */
    display: none;
    flex-direction: column;
    justify-content: flex-start;
    margin: auto;
    max-height: 99dvh;
    max-width: 600px;
    min-width: 298px;
    outline: #1e1e1f solid 3px;
}


.popup .container .con-header {
    align-items: center;
    background-color: #48494a;
    border-bottom: #5a5b5c solid 3px;
    border-left: #6d6d6e solid 3px;
    border-right: #5a5b5c solid 3px;
    border-top: #6d6d6e solid 3px;
    display: flex;
    min-height: 80px;
    justify-content: flex-end;
    width: 100%;
}

.popup .container .con-header .close {
    align-items: center;
    cursor: pointer;
    display: flex;
    height: 70px;
    justify-content: center;
    margin-right: 2.5px;
    min-width: 70px;
}
.popup .container .con-header .close:hover {
    background-color: #58585a;
}
.popup .container .con-header .close:active {
    background-color: #313233;
}

.popup .container .con-header .close img {
    height: 30px;
    width: 30px;
}

.popup .container .content {
    align-items: flex-start;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 20px 10px;
    overflow-y: auto;
    scrollbar-color: #48494a #313233;
    width: 100%;
}



input {
    border: 0px;
    caret-color: #6cc349;
    color: #fff;
    font-family: "Mojangles", "Unicode";
    outline: none;
    padding: 5px .7rem;
}




.logo {
    align-items: center;
    display: flex;
    justify-content: center;
    width: 100%;
}


.logo img {
    width: 250px;
}




.tagline {
    color: white;
    margin-top: 10px;
    text-align: center;
}





.sso {
    display: flex;
    height: 50px;
    justify-content: center;
    margin: 50px auto;
    width: 100%;
}


.sso .msa {
    align-items: center;
    background-color: #2f2f2f;
    border-radius: 7px;
    cursor: pointer;
    display: flex;
    height: 100%;
    justify-content: center;
    width: calc(100% - 50px);
    max-width: 400px;
}

.sso .msa img {
    height: calc(100% - 20px);
    margin-right: 10px;
}

.sso .msa p {
    color: white;
    font-family: 'Segoe UI Regular', 'Roboto', 'Unicode';
    font-weight: 600;
}





.form {
    align-items: center;
    display: flex;
    flex-direction: column;
    margin: 50px auto 0;
    width: calc(100% - 60px);
    max-width: 600px;
}



.form label {
    color: white;
    font-family: 'Mojangles', 'Unicode';
    font-size: 1rem;
    margin: 30px auto 10px 0;
}
.form label:first-child {
    margin-top: 0;
}


.form input {
    align-items: center;
    background-color: #313233;
    border-top: 4px solid #242425;
    display: flex;
    font-size: 20px;
    height: 50px;
    line-height: 1rem;
    margin: 0 auto;
    outline: 3px solid #1e1e1f;
    width: calc(100% - 6px);
}
.form input#password {
    margin-bottom: 50px;
}
.form input#password::-ms-reveal {
    filter: invert(100%);
}


.form .action {
    align-items: flex-end;
    display: flex;
    height: 60px;
    width: 100%;
}

.form .action .button-active .btn-con {
    align-items: center;
    display: flex;
    justify-content: center;
}

.form .action .button-active .btn-con h3 {
    font-family: 'RFB Store set';
}