/* Login */
#log .btn_log {font-size: 16px; color: #fff; line-height: 55px; font-weight: 500;}
#log .form_con dl dd input { color: #000;}
#log .form_con dl dd input { width: 100%; height: 54px; border-bottom: 1px solid #C4C4C4; box-sizing: border-box; font-size: 14px; font-weight: 400; line-height: 54px; overflow: hidden; color: #848484; }
.err dl dd input {
    border-bottom: 1px solid #E62929;
}
.invalid-feedback {
    padding-top:3px;
    font-size: 12px;
    font-weight: 500;
    line-height: 17px;
    letter-spacing: -0.5px;
    color: #E62929;
}

input[type=text]:read-only, input[type=password]:read-only, input[type=number]:read-only, input[type=tel]:read-only, input[type=email]:read-only, input[read-only="read-only"] {
    background: #F5F5F5 !important;
    color: #000;
    border: 1px solid var(--border-02);
}
input::placeholder {
    color:#ccc;
}
textarea::placeholder {
    color:#ccc;
}

/* pagination */
#page > li.active { border-color: #1B2F89; background: #F4F5FA; }
#page > li.active > a { color: #1B2F89; }

.sign-border {border:1px solid #ddd; border-radius: 3px;}
#gnb01 .p_confirm img {
    max-height: 80% !important;
    max-width: 67px;
    margin: 0 auto;
    margin-top: -3px !important;
}
#att-list tr.active td {
    background-color: #ddd;
}

header .log #safety { width: 150px; }
header.on .log #safety { background-color: #6A5ACD; }

#loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loading-content {
    text-align: center;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
}

.spinner {
    border: 8px solid #f3f3f3; /* Light grey */
    border-top: 8px solid #3498db; /* Blue */
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}