﻿main {
    height: 100%;
    width: 100%;
}

.auth-loader {
    height: 100%;
    width: 100%;
    background-color: #ccc;
}

.loading-spinner {
    margin: 0px;
    padding: 0px;
    border: 0;
    display: block;
    position: absolute;
    top:0px;
    bottom:0px;
    left:0px;
    right:0px;
    background-color: rgba(0,0,0,0.5);
    color: #DE9200;
    z-index: 1000;
}

.spinner-container {
    position: relative;
    display: block;
    text-align: center;
    top: calc(50% - 30px);
    font-size: 30px;
    left: 50%;
    transform: translate(-50%, -50%);
}

.bar-container {
    width: 100%;
    background-color: #e0e0e0;
    height: 30px;
    position: relative;
    border: 1px solid black;
    width: 50vw;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.bar {
    height: 100%;
    background-color: #DE9200;
    text-align: center;
    line-height: 30px; /* Center text vertically */
    color: white;
    position: absolute;
    top: 0;
}

.max-bar {
    height: 100%;
    text-align: center;
    line-height: 30px; /* Center text vertically */
    color: white;
    position: absolute;
    top: 0;
}

    .auth-loader-container {
        position: absolute;
        top: 25%;
        left: 50%;
        transform: translate(-50%, -50%);
        font-size: 1.5em; /* Adjust as needed */
        text-align: center;
        border: 1px solid lightgray;
        border-radius: 5px;
        background-color: white;
        padding: 20px 40px;
    }

.cols-one {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    height: 100%;
}

.cols-two {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    height: 100%;
}

.cols-two-lt {
    display: grid;
    margin-top: 8px;
    grid-template-columns: max-content 1fr;
    gap: 8px 16px;
    height: 100%;
}

.cols-two-rt {
    display: grid;
    grid-template-columns: 1fr max-content;
    gap: 8px;
    height: 100%;
}

label {
    align-self: center;
    text-wrap: nowrap;
}