* {
    margin: 0;
    box-sizing: border-box;
    padding: 0;
    font-family: 'sans-serif';
    -webkit-tap-highlight-color: transparent;
    user-select: none;
    outline: none;
}
*:focus {
    outline: none;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
}
@font-face  {
    font-family: 'Glacial';
    src: url('Fonts/glacial-indifference.regular.otf');
}
body {
    background-color: #090913;
}
main {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    flex-direction: column;
}
main > label {
    position: relative;
    color: white;
    font-size: 30px;
    background-color: #1b1a28;
    border: 1px solid #21212d;
    border-bottom: none;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    width: 200px;
    text-align: center;
    display: none;
}
.account-container {
    background-color: #1b1a28;
    text-align: center;
    width: 300px;
    height: 300px;
    padding: 10px;    
    border-radius: 20px;
    border: 1px solid #21212d;
    box-shadow: 0px 0px 30px 1px rgba(0, 255, 255, .3);
}
.unotifier, .pnotifier, .submit-notifier {
    text-decoration: none;
    font-style: normal;
    font-size: 10px;
    color: #ff4040;
    display: none;
    height: 0;
}
.policy {
    font-size: 10px;
    font-style: italic;
    text-decoration: underline;
    font-weight: normal;
    color: grey;
    cursor: pointer;
    transition: all 0.25 ease;
}
.sub-container > span:hover {
    font-weight: bolder;
}
.sub-container > span:active {
    transform: scale(0.98);
    color: white;
}
.sub-container {
    background-color: transparent;
    width: 280px;
    height: 280px;
    display: flex;
    padding: 10px;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
input {
    background-color: #0a0a14;
    border: 1px solid gray;
    border-radius: 5px;
    height: 50px;
    width: 200px;
    text-align: center;
    color: beige;
    user-select: none;
    -webkit-user-select: none;
    transition: all 0.25s ease;
}
input:hover {
    font-size: 14px;
    background-color: #1e1e28;
}
input::selection {
    background-color: transparent;
    color: inherit;
}
input::placeholder {
    color: grey;
}
.submit:active {
    background-color: #0a0a14;
    box-shadow: inset 0px 0px 5px 5px #1e1e28;
}
.terms-and-privacy-box {
    background-color: #1b1a28;
    position: absolute;
    padding: 10px 10px 10px 10px;
    width: 370px;
    height: 500px;
    color: white;
    overflow-y: scroll;
    overflow-x: hidden;
    overflow-wrap: break-word;
    border-radius: 5px;
    border: 1px solid #21212d;
    display: none;
    z-index: 1;
}
.separator{
    background-color: transparent;
    width: 350px;
    height: 30px;
    border-bottom: 1px dashed grey;
    margin-bottom: 10px;
}
.separator > label {
    font-weight: bolder;
    font-size: 20px;
}
.back-btn {
    position: absolute;
    width: 20px;
    height: 20px;
    right: 10px;
    
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.25s ease;
    
    -webkit-mask: url('Assets/Icons/x-solid.svg') no-repeat center;
    mask: url('Assets/Icons/x-solid.svg') no-repeat center;
    -webkit-mask-size: 24px;
    mask-size: 24px;
    
    background-color: red;
}
.back-btn:hover {
    background-color: #ff000aa4;
}
.back-btn:active {
    transform: scale(0.90);
}
#terms-content-target{
    font-size: 12px;
    background-color: transparent;
    width: 350px;
    height: auto;
}
.terms-container {
    overflow-wrap: break-word;
    background-color: transparent;
}
.terms-container > ul, .terms{
    background-color: transparent;
    width: 330px;
    left: 0;
    transform: translateX(5%);
}
.terms-container > h3 {
    font-weight: bold;
}
.jurisdiction, .terms-game-name, .dev, .require{
    color: yellow;
}
.terms-updated {
    color: beige;
}
























