/* 全局样式重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* 背景样式 */
body {
     font-family: "汉仪尚巍手书", "庞门正道粗书体", "STKaiti", "KaiTi", serif;
    background-image: url('../img/bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* 登录容器 */
.login-container {
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 10px;
    padding: 40px;
    width: 540px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    text-align: center;
}

/* 标题样式 */
.login-container h1 {
    font-size: 64px;
    color: #333;
    margin-bottom: 30px;
    font-weight: 900;
}

/* 输入组样式 */
.input-group {
    margin-bottom: 20px;
}

.input-group input {
    width: 100%;
    padding: 12px 15px;
    font-size: 40px;
    border: 2px solid #ccc;
    border-radius: 40px;
    background-color: transparent;
    font-family: "汉仪尚巍手书", "庞门正道粗书体", "STKaiti", "KaiTi", serif;
    color: #333;
}

.input-group input::placeholder {
    color: #666;
}

/* 选项区域样式 */
.options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    font-size: 32px;
}

.remember {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.remember input {
    margin-right: 5px;
}

.forgot {
    color: #666;
    text-decoration: none;
}

.forgot:hover {
    text-decoration: underline;
}

/* 登录按钮样式 */
.login-btn {
    width: 100%;
    padding: 12px;
    font-size: 40px;
    border: none;
    border-radius: 40px;
    background-color: #fff;
    color: #333;
    cursor: pointer;
    font-family: "汉仪尚巍手书", "庞门正道粗书体", "STKaiti", "KaiTi", serif;
    margin-bottom: 20px;
}

.login-btn:hover {
    background-color: #f0f0f0;
}

/* 注册链接样式 */
.register {
    font-size: 22px;
    color: #666;
}

.register a {
    color: #333;
    text-decoration: none;
}

.register a:hover {
    text-decoration: underline;
}

/* 响应式设计 */
@media (max-width: 480px) {
    .login-container {
        width: 90%;
        padding: 30px;
    }
    
    .login-container h1 {
        font-size: 28px;
    }
}