/* =========================================================
   🔐 登录页整体布局
   ========================================================= */

.login-page {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 40px 20px;
}

/* =========================================================
   📦 登录卡片
   ========================================================= */

.login-box {
    width: 460px;
    max-width: 100%;
    padding: 50px 45px;
    border-radius: 20px;
    text-align: center;
    position: relative;
    background: #f4ead6;              /* 米色 */
    box-shadow:
            0 15px 40px rgba(0,0,0,0.15),
            inset 0 1px 0 rgba(255,255,255,0.5);
}

/* =========================================================
   🏷 标题
   ========================================================= */

.login-box h2 {
    font-size: 28px;
    font-weight: 700;
    color: #7a1d1d;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

/* 副标题胶囊 */
.login-box .subtitle {
    display: inline-block;
    padding: 6px 20px;
    margin-bottom: 30px;
    border-radius: 20px;
    background: #efe2c8;
    border: 1px solid #d9c3a3;
    color: #7a1d1d;
    font-size: 13px;
}

/* =========================================================
   ✏ 输入框
   ========================================================= */

.login-box input,
.login-box select {
    width: 100%;
    height: 46px;
    padding: 0 16px;
    margin-bottom: 18px;
    border-radius: 12px;
    font-size: 14px;
    box-sizing: border-box;
    background: #e8e8e8;
    border: 2px solid #333;
    outline: none;
    transition: all .2s ease;
}

/* focus 效果 */
.login-box input:focus,
.login-box select:focus {
    border-color: #7a1d1d;
    box-shadow: 0 0 0 3px rgba(122,29,29,0.15);
}

/* =========================================================
   🔘 登录按钮
   ========================================================= */

.login-box button {
    width: 100%;
    height: 48px;
    margin-top: 10px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    background: #dcdcdc;
    border: 2px solid #333;
    cursor: pointer;
    transition: all .2s ease;
}

.login-box button:hover {
    background: #cfcfcf;
}

.login-box button:active {
    transform: translateY(2px);
}