* body {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', 'Helvetica', 'Arial', 'sans-serif';
    scroll-behavior: smooth;
    background: #000000;
}

#container {
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

.tcw {
    padding: 10px;
    margin: 5px;
    color: #063572;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

#progress {
    width: auto;
    margin: auto;
    text-align: center;
    display: none;
    background-image: url("img/background.png");
    background-size: cover;
    background-repeat: no-repeat;
    height: 100vh;
}

#pog {
    margin: 20% auto;
    padding: 20px;
    height: 80px;
    width: 80px;
    -webkit-animation: spin 2s linear infinite;
    -moz-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
    -webkit-touch-callout: none;
    /* iOS Safari */
    -webkit-user-select: none;
    /* Safari */
    -khtml-user-select: none;
    /* Konqueror HTML */
    -moz-user-select: none;
    /* Old versions of Firefox */
    -ms-user-select: none;
    /* Internet Explorer/Edge */
    user-select: none;
    /* Non-prefixed version, currently
                                  supported by Chrome, Edge, Opera and Firefox */
    -webkit-animation: spin 2s linear infinite;
    -moz-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}

@-webkit-keyframes spin {
    100% {
        -webkit-transform: rotate(360deg);
    }
}

@-moz-keyframes spin {
    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    100% {
        -webkit-transform: rotate(360deg);
    }
}

#popupAlert {
    display: none;
    z-index: 20;
    padding: 10px;
    background-color: #ffffff;
    box-shadow: 0px 0px 3px rgb(181, 178, 178);
    border-radius: 5px;
    height: 60px;
    width: 250px;
    top: 50%;
    left: calc(55% - 180px);
    position: absolute;
}

.progress {
    width: 100%;
}

#popmassg {
    text-align: center;
}

#progress-fill {
    height: 5px;
    width: 0%;
    border-radius: 5px;
    background: green;
    transition: width 0.5s;
}

#LoginScreen {
    display: inline-block;
    align-items: center;
    justify-content: center;
    width: auto;
    margin: auto;
    text-align: center;
    padding: 30px;
    background-image: url("img/background.png");
    background-size: cover;
    background-repeat: no-repeat;
    height: 100vh;
}

.lnsv {
    display: grid;
    grid-template-columns: 3fr 1fr;
    align-items: center;
    justify-content: center;
    padding-top: 10vh;
}

#left {
    display: inline-block;
    text-align: center;
    width: fit-content;
    margin: auto;
}

#right {
    padding: 50px 0px;
    width: 300px;
    height: 400px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.878);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(100px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

#par {
    color: #063f5e;
    font-size: 1.4rem;
    margin-bottom: 60px;
}

#login {
    font-size: 1rem;
    color: #ffffff;
    background: -webkit-linear-gradient(to right, #833ab4, #154ed4);
    background: linear-gradient(to right, #833ab4, #154ed4);
    padding: 10px 30px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    outline: none;
    display: block;
    margin: auto;
}

.ttext {
    height: 7vh;
    color: #063f5e;
}
.inftxt{
    color: #063f5e;
}
.main {
    background-color: #ffffff;
    padding: 0;
    height: 100%;
}

.main_container {
    display: flexbox;
    justify-content: center;
    margin: 0 auto;
    height: 90%;
    z-index: 1;
    width: 100%;
    padding: 0px;
}

.main_content {
    height: fit-content;
    width: fit-content;
    padding: 20px;
}

@media screen and (max-width: 460px) {
    .lnsv {
        display: grid;
        grid-template-columns: 1fr;
        align-items: center;
        justify-content: center;
        padding-top: 5vh;
    }
}

@media screen and (max-width: 300px) {
    #right {
        padding: 50px 0px;
        width: auto;
        height: 400px;
        border-radius: 10px;
    }
}