﻿.material-textfield {
    position: relative;
}

label {
    position: absolute;
    font-size: 1rem;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background-color: white;
    color: lightblue;
    padding: 0 0.3rem;
    margin: 0 0.5rem;
    transition: .1s ease-out;
    transform-origin: left top;
    pointer-events: none;
}

input {
    font-size: 1rem;
    outline: none;
    border: 1px solid gray;
    border-radius: 5px;
    padding: 0.5rem 0.5rem;
    color: gray;
    transition: 0.1s ease-out;
}

    input:focus {
        border-color: #6200EE;
    }

        input:focus + label {
            color: #6200EE;
            top: 0;
            transform: translateY(-50%) scale(.9);
        }

    input:not(:placeholder-shown) + label {
        top: 0;
        transform: translateY(-50%) scale(.9);
    }





#loadingDiv {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 1200;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loadingimg {
    display: flex;
    justify-content: center;
    align-items: center;
}

    .loadingimg img {
        background-color: #F7F7FF;
        border-radius: 8px;
        width: 100px;
        height: auto;
    }
