* {
    /* 去除浏览器默认内外边距 */
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

/* 去除input的轮廓 */
input {
    outline: none;
}

html,
body {
    height: 100%;
}

body {
    /* 溢出隐藏 */
    overflow-x: hidden;
    display: flex;
    /* 渐变方向从左到右 */
    background: linear-gradient(to right, rgb(247, 209, 215), rgb(191, 227, 241));
    position: relative;
    padding-top: 0; /* 移除顶部间距 */
}

/* 最外层的大盒子 */
.box {
    width: 1050px;
    height: 600px;
    display: flex;
    /* 相对定位 */
    position: relative;
    z-index: 2;
    margin: auto;
    /* 设置圆角 */
    border-radius: 8px;
    /* 设置边框 */
    border: 1px solid rgba(255, 255, 255, .6);
    /* 设置盒子阴影 */
    box-shadow: 2px 1px 19px rgba(0, 0, 0, .1);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    overflow: hidden;
}

/* 滑动的盒子 */
.pre-box {
    /* 宽度为大盒子的一半 */
    width: 50%;
    height: 100%;
    /* 绝对定位 */
    position: absolute;
    /* 距离大盒子左侧为0 */
    left: 0;
    /* 距离大盒子顶部为0 */
    top: 0;
    z-index: 99;
    border-radius: 4px;
    background-color: #edd4dc;
    box-shadow: 2px 1px 19px rgba(0, 0, 0, .1);
    /* 动画过渡，先加速再减速 */
    transition: 0.5s ease-in-out;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

/* 滑动盒子的标题 */
.pre-box h1 {
    margin-top: 40px;
    text-align: center;
    /* 文字间距 */
    letter-spacing: 5px;
    color: white;
    /* 禁止选中 */
    user-select: none;
    /* 文字阴影 */
    text-shadow: 4px 4px 3px rgba(0, 0, 0, .1);
    font-size: 2.5rem;
}

/* 滑动盒子的文字 */
.pre-box p {
    height: 30px;
    line-height: 30px;
    text-align: center;
    margin: 20px 0;
    /* 禁止选中 */
    user-select: none;
    font-weight: bold;
    color: white;
    text-shadow: 4px 4px 3px rgba(0, 0, 0, .1);
    font-size: 1.2rem;
}

/* 图片盒子 */
.img-box {
    width: 200px;
    height: 200px;
    margin: 20px auto;
    /* 设置为圆形 */
    border-radius: 50%;
    /* 设置用户禁止选中 */
    user-select: none;
    overflow: hidden;
    box-shadow: 4px 4px 3px rgba(0, 0, 0, .1);
    border: 3px solid rgba(255, 255, 255, 0.5);
}

/* 图片 */
.img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

/* 登录和注册盒子 */
.login-form,
.register-form {
    flex: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 40px;
}

/* 标题盒子 */
.title-box {
    height: auto;
    margin-bottom: 40px;
}

/* 标题 */
.title-box h1 {
    text-align: center;
    color: white;
    /* 禁止选中 */
    user-select: none;
    letter-spacing: 5px;
    text-shadow: 4px 4px 3px rgba(0, 0, 0, .1);
    font-size: 2.5rem;
}

/* 输入框盒子 */
.input-box {
    display: flex;
    /* 纵向布局 */
    flex-direction: column;
    /* 水平居中 */
    align-items: center;
}

/* 输入框 */
.input-box input {
    width: 100%;
    max-width: 350px;
    height: 45px;
    margin-bottom: 20px;
    padding: 0 20px;
    text-indent: 10px;
    border: 1px solid #fff;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 120px;
    /* 增加磨砂质感 */
    backdrop-filter: blur(5px);
    font-size: 16px;
    color: #333;
    transition: all 0.3s ease;
}

.input-box input::placeholder {
    color: #666;
}

input:focus {
    background-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

/* 聚焦时隐藏文字 */
input:focus::placeholder {
    opacity: 0;
}

/* 按钮盒子 */
.btn-box {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    margin-top: 10px;
}

/* 按钮 */
.btn-box button {
    width: 100%;
    max-width: 350px;
    height: 45px;
    margin: 10px 0;
    border: none;
    border-radius: 30px;
    background-color: #69b3f0;
    color: white;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* 按钮悬停时 */
.btn-box button:hover {
    background-color: #5aa0d9;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

/* 按钮文字 */
.btn-box p {
    height: 30px;
    line-height: 30px;
    /* 禁止选中 */
    user-select: none;
    font-size: 16px;
    color: white;
    margin-top: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-box p:hover {
    text-decoration: underline;
    transform: translateY(-1px);
}

/* 消息提示 */
.alert-container {
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    justify-content: center;
}

.alert-box {
    padding: 15px 30px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    max-width: 80%;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
}

.alert-success {
    color: #28a745;
    border: 2px solid #28a745;
}

.alert-danger {
    color: #dc3545;
    border: 2px solid #dc3545;
}

.alert-warning {
    color: #ffc107;
    border: 2px solid #ffc107;
}

/* 管理员链接 */
.admin-link {
    position: absolute;
    bottom: 20px;
    right: 20px;
    color: white;
    font-size: 14px;
    text-decoration: none;
    z-index: 100;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.admin-link:hover {
    text-decoration: underline;
    transform: translateY(-2px);
}

/* ========================= 移动端优化 ========================= */
@media (max-width: 1100px) {
    .box {
        width: 90%;
        height: auto;
        min-height: 500px;
        flex-direction: column;
        margin-top: 30px;
        background: rgba(255, 255, 255, 0.2); /* 增加整体透明度 */
        backdrop-filter: blur(10px); /* 增强磨砂效果 */
    }

    .pre-box {
        display: none;
    }

    .login-form,
    .register-form {
        width: 100%;
        padding: 30px 20px;
        margin-bottom: 20px;
        background: transparent; /* 移除白色背景 */
        border-radius: 15px;
        box-shadow: none; /* 移除阴影 */
    }

    .admin-link {
        display: none;
    }

    .title-box h1 {
        font-size: 2rem;
        margin-bottom: 30px;
        color: white; /* 保持白色标题 */
        text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.2); /* 增强文字阴影 */
    }

    .input-box input {
        height: 55px;
        font-size: 17px;
        margin-bottom: 25px;
        background-color: rgba(255, 255, 255, 0.4); /* 增加输入框透明度 */
        border: 2px solid rgba(255, 255, 255, 0.7); /* 增强边框 */
        color: #333; /* 确保文字可见 */
    }

    .input-box input::placeholder {
        color: #555; /* 增强占位符可见性 */
    }

    .btn-box button {
        height: 55px;
        font-size: 18px;
        margin-top: 10px;
        background-color: rgba(105, 179, 240, 0.9); /* 增加按钮透明度 */
    }

    .btn-box p {
        margin-top: 20px;
        font-size: 16px;
        color: white; /* 保持白色文字 */
        font-weight: bold;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3); /* 增加文字阴影 */
    }

    .alert-container {
        top: 20px;
    }
    
    /* 在移动端默认显示登录表单，隐藏注册表单 */
    .register-form {
        display: none;
    }
}

/* 超小屏幕优化 (手机) */
@media (max-width: 576px) {
    body {
        background: linear-gradient(to bottom, rgb(247, 209, 215), rgb(191, 227, 241));
    }

    .box {
        width: 95%;
        min-height: calc(100vh - 40px);
        border-radius: 15px;
        margin-top: 20px;
        border: none;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        background: rgba(255, 255, 255, 0.15); /* 更透明的背景 */
        backdrop-filter: blur(8px); /* 更强的磨砂效果 */
    }

    .login-form,
    .register-form {
        padding: 20px 15px;
        margin: 0;
        background: transparent;
        box-shadow: none;
    }

    .title-box h1 {
        font-size: 1.8rem;
        margin-bottom: 20px;
        color: white; /* 确保标题为白色 */
    }

    .input-box input {
        height: 50px;
        font-size: 16px;
        margin-bottom: 20px;
        background-color: rgba(255, 255, 255, 0.45); /* 增加输入框透明度 */
    }

    .btn-box button {
        height: 50px;
        font-size: 17px;
        background-color: rgba(105, 179, 240, 0.95); /* 更明显的按钮 */
    }

    .btn-box p {
        font-size: 15px;
        color: white; /* 确保文字为白色 */
    }
}

/* 超小屏幕优化 (小手机) */
@media (max-width: 400px) {
    .title-box h1 {
        font-size: 1.6rem;
    }

    .input-box input {
        height: 45px;
        font-size: 15px;
        background-color: rgba(255, 255, 255, 0.5); /* 进一步提高输入框可见性 */
    }

    .btn-box button {
        height: 45px;
        font-size: 16px;
    }
}