.template {
    margin: 40px auto 60px;
    accent-color: #c38900;
}

.template div label {
    display: flex;
    align-items: center;
    cursor: pointer;
}
.template div input { margin-right: 5px;}
.code { text-align: center;}
.query {
    width: 140px;
    height: 40px;
    margin: 30px auto 0;
    line-height: 40px;
    text-align: center;
    /*background: linear-gradient(146.17deg, #FDB813 0%, #F7FF1A 100%);*/
    background: linear-gradient(to right bottom,#f99190,#e5329b,#8e4ad1);
    border-radius: 4px;
    cursor: pointer;
    color: #FFFFFF;
}
#codeInput {
    max-width: 95%;
    width: 400px;
    height: 50px;
}

.n_label{
    width: 100%;
    height: 60px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    text-align: center;

    font-family: Tahoma;
    font-size: 20px;
    font-weight: bold;
    /*padding: 8px 0;*/
    line-height: 1.5em;
    letter-spacing: 0.3em;
    background-color: #FC55A7;
}


.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s, opacity 0.5s linear;
}
.loading-overlay.active {
    visibility: visible;
    opacity: 1;
    z-index: 99;
}
.loading-spinner {
    border: 4px solid #f3f3f3; /* Light grey */
    border-top: 4px solid #FC55A7; /* Blue */
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 2s linear infinite;
}

.loading-text {
    font-size: 14px;
    color: white;
    margin-top: 10px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}