/* _content/VSSWeb/Components/Layout/Index.razor.rz.scp.css */
body[b-msm5jbn1b2] {
    margin: 0;
    padding: 0;
    font-family: sans-serif;
    background: url("bg.jpg") no-repeat;
    background: #2b2b2b !important;
    background-size: cover;
    max-width: 100vw;
}

.box[b-msm5jbn1b2] {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    padding: 40px;
    background: #2b2b2b;
    box-sizing: border-box;
    /*box-shadow: 0 15px 25px rgba(0, 0, 0, 0.5);*/
    box-shadow: 10px 10px 30px rgba(0,0,0,0.2), -5px -5px 10px rgba(255,255,255,0.1), inset 10px 10px 30px rgba(0,0,0,0.2);
    border-radius: 10px;
    /*border: 1px solid #009788;*/
}

    .box h2[b-msm5jbn1b2] {
        margin: 0 0 30px;
        padding: 0;
        color: #fff;
        text-align: center;
    }

    .box .inputBox[b-msm5jbn1b2] {
        position: relative;
    }

        .box .inputBox input[b-msm5jbn1b2] {
            width: 100%;
            padding: 10px 0;
            font-size: 16px;
            color: #fff;
            letter-spacing: 2px;
            margin-bottom: 30px;
            border: none;
            border-bottom: 1px solid #fff;
            outline: none;
            background: transparent;
        }

        .box .inputBox label[b-msm5jbn1b2] {
            position: absolute;
            top: 0;
            left: 0;
            letter-spacing: 2px;
            padding: 10px 0;
            font-size: 16px;
            color: #fff;
            pointer-events: none;
            transition: 0.5s;
        }

        .box .inputBox input:focus ~ label[b-msm5jbn1b2],
        .box .inputBox input:valid ~ label[b-msm5jbn1b2] {
            top: -25px;
            left: 0;
            color: #03a9f4;
            font-size: 12px;
        }

    .box input[type="submit"][b-msm5jbn1b2] {
        background: transparent;
        border: none;
        outline: none;
        color: #fff;
        background: #03a9f4;
        padding: 10px 20px;
        cursor: pointer;
        border-radius: 5px;
    }
/* _content/VSSWeb/Components/Layout/NavMenu.razor.rz.scp.css */
/* _content/VSSWeb/Modal/Modal.razor.rz.scp.css */
.modal-shadow[b-o7wgd7w5tk] {
    --backdrop-color: rgba(0,0,0,0.4);
    --modal-content-width: auto;
    position: absolute;
    top: 0;
    left: 0;
    background: var(--backdrop-color);
    height: 100vh;
    width: 100vw;
    z-index: 9999;
    display: grid;
    align-content: center;
    overflow: hidden;
}

.modal-content[b-o7wgd7w5tk] {
    width: var(--modal-content-width);
    /* min-width: 500px !important; */
    max-width: 100vw !important;
    max-height: 95vh;
    margin: 0 auto;
    padding: 10px 20px;
    border: none;
    position: relative;
    border-radius: 30px;
    overflow: auto;
}

.modal-content-header[b-o7wgd7w5tk] {
    font-size: 25px;
    font-weight: 400 !important;
}

.modal-content-content[b-o7wgd7w5tk] {
}

.modal-content-footer[b-o7wgd7w5tk] {
    margin-top: 30px;
    margin-bottom: 20px;
}




