body[data-page="init_page"] .msc_header{
    padding-top: 35%;
}

body[data-page="init_page"] .msc_body{
    padding: 0% 9.3%;
}

body[data-page="init_page"] .msc_header > #logo_app{
    width: 50%;
    height: auto;
}

body[data-page="init_page"] .msc_footer{
    opacity: 0;
    pointer-events: none;
}

.main_screen .mscb_init_page.active + .msc_footer {
    opacity: 0;
    pointer-events: none;
}

.mscb_init_page {
    width: 100%;
    border-radius: 1rem;
    padding: 7.9% 15%;
    flex-direction: column;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    max-width: 90vw;
    background: rgba(70, 70, 70, 0.144);
    backdrop-filter: blur(10px) saturate(160%);
    -webkit-backdrop-filter: blur(10px) saturate(160%);
    border: 1px solid rgba(255, 255, 255, 0.103);
    box-shadow:
        0 4px 12px rgb(0 0 0 / 0.45),
        0 0 20px rgba(255, 255, 255, 0.123);
    transform: translateY(-18vw);
}
.mscb_init_page > h1 {
    margin: 0 !important;
    text-align: center;
    color: #C4C4C4;
    font-size: 4vw;
    font-family: "RubikRegular";
    margin: 0;
}
.mscmb_init_fields{
    width: 100%;
    margin: 15.8% 0;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 8.6%;
}
.mscmb_init_fields > input{
    background: rgba(51, 51, 51, 0.096);
    border: 2px solid #999999;
    box-shadow: 1px 2px 5px 0px rgba(0,0,0,0.24);
    -webkit-box-shadow: 1px 2px 5px 0px rgba(0,0,0,0.24);
    -moz-box-shadow: 1px 2px 5px 0px rgba(0,0,0,0.24);
    gap: 6.6%;
    outline: none !important;
    border-radius: .688rem;
    padding: 6.6% 2%;
    font-family: "RubikMedium";
    font-size: 1.5rem;
    text-align: center;
    color: #c4c4c4;
    width: 100%;
    caret-color: transparent;
    transition: border 0.2s ease-in-out, transform 0.2s ease-in-out;
}
.mscmb_init_fields input.error {
  border-color: #813232;
  background-color: rgba(255, 85, 85, 0.1);
  transition: background-color 0.2s, border-color 0.2s;
}
.mscmb_init_fields input.success {
  border-color: #3f8132ab;
  background-color: rgba(85, 255, 93, 0.1);
  transition: background-color 0.2s, border-color 0.2s;
}
.mscmb_init_fields > input:focus{
    border: 2px solid #e0e0e0;
    transform: scale(1.05);
}
.mscmb_init_button{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 3vw 8vw;
    min-height: 44px;
    border-radius: 16px;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(14px) saturate(180%);
    -webkit-backdrop-filter: blur(14px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.13);
    box-shadow:
        inset 0 0 0 0 rgba(255, 255, 255, 0.08),
        0 6px 18px rgba(0, 0, 0, 0.185);
    color: #c4c4c4;
    font-size: 4vw;
    font-family: "RubikLight";
    letter-spacing: 0.2px;
}