/* 권한 없음 / 비회원 로그인 안내 화면 */
.xet-content #access {
    max-width: 460px;
    margin: 40px auto;
    padding: 42px 36px 34px;
    border-radius: 22px;
    background: #ffffff;
    border: 1px solid rgba(74, 113, 136, 0.18);
    box-shadow: 0 18px 45px rgba(35, 60, 75, 0.12);
    text-align: center;
    box-sizing: border-box;
}

.xet-content #access .login-header h1 {
    margin: 0 0 26px;
    font-size: 25px;
    line-height: 1.4;
    font-weight: 800;
    letter-spacing: -0.04em;
    color: #2f4f60;
}

.xet-content #access .login-header h1::before {
    content: "";
    display: block;
    width: 54px;
    height: 54px;
    margin: 0 auto 16px;
    border-radius: 50%;
    background: rgba(74, 113, 136, 0.1);
}

.xet-content #access .login-body {
    margin: 0;
}

.xet-content #access .control-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 0;
}

.xet-content #access input[type="text"],
.xet-content #access input[type="password"] {
    width: 100%;
    height: 48px;
    padding: 0 15px;
    border: 1px solid #d9e1e5;
    border-radius: 12px;
    background: #f8fafb;
    font-size: 15px;
    color: #333;
    box-sizing: border-box;
    outline: none;
}

.xet-content #access input[type="text"]:focus,
.xet-content #access input[type="password"]:focus {
    border-color: #4a7188;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(74, 113, 136, 0.12);
}

.xet-content #access label[for="keepid"] {
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 2px 0 4px;
    font-size: 14px;
    color: #5d6870;
    text-align: left;
    cursor: pointer;
}

.xet-content #access label[for="keepid"] input {
    margin: 0;
}

.xet-content #access p {
    margin: 18px 0 0;
}

.xet-content #access .button {
    width: 100%;
    height: 50px;
    border: 0;
    border-radius: 13px;
    background: #4a7188;
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.xet-content #access .button:hover {
    background: #3d6175;
    transform: translateY(-1px);
}

.xet-content #access .login-footer {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid #edf1f3;
    font-size: 14px;
    color: #9aa4aa;
}

.xet-content #access .login-footer a {
    color: #4a7188;
    font-weight: 600;
    text-decoration: none;
}

.xet-content #access .login-footer a:hover {
    text-decoration: underline;
}

.xet-content #access .login-footer .bar {
    margin: 0 9px;
    color: #c9d0d4;
}

@media (max-width: 600px) {
    .xet-content #access {
        margin: 24px auto;
        padding: 34px 22px 28px;
        border-radius: 18px;
    }

    .xet-content #access .login-header h1 {
        font-size: 22px;
    }

    .xet-content #access input[type="text"],
    .xet-content #access input[type="password"],
    .xet-content #access .button {
        height: 46px;
    }
}