/** layuiAdmin.std-v1.4.0 LPPL License By https://www.layui.com/admin/ */
#LAY_app, body, html {
    height: 100%
}

.layui-layout-body {
    overflow: auto
}
 

.layadmin-user-login-footer {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 150%;
    line-height: 30px;
    padding: 20px;
    text-align: center;
    box-sizing: border-box;
    color: rgba(0,0,0,.5)
}

    .layadmin-user-login-footer span {
        padding: 0 5px
    }

    .layadmin-user-login-footer a {
        padding: 0 5px;
        color: rgba(0,0,0,.5)
    }

        .layadmin-user-login-footer a:hover {
            color: rgba(0,0,0,1)
        }

.layadmin-user-login-main[bgimg] {
    background-color: #fff;
    box-shadow: 0 0 5px rgba(0,0,0,.05)
}

/* 全局样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body {
    font-family: "Microsoft YaHei", "微软雅黑", Arial, sans-serif;
    background: linear-gradient(135deg, #f5d75f 0%, #f7941d 100%);
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
    background-image: url('/images/Login/bg.jpg'); /* 替换为你自己的图片路径 */
    background-size: cover; /* 图片覆盖整个页面 */
    background-position: center; /* 居中对齐 */
    background-repeat: no-repeat; /* 不重复 */
    background-attachment: fixed; /* 可选：滚动时背景固定 */
}

/* 登录页背景 */
.login-page {
    width: 100%;
    height: 100%;
    position: relative; 
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 登录容器 */
.login-container {
    width: 350px;
    overflow: hidden;
}

/* Logo样式 */
.logo-box {
    text-align: center;
    padding: 20px 0;
}

.logo {
    max-width: 150px;
    height: auto;
}

/* 登录表单区域 */
.login-form-box {
    padding: 40px 30px;
    background: rgba(255, 255, 255, 0.50);
    box-shadow: 0px 4px 40px 0px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(7.5px);
}

.login-title {
    font-size: 16px;
    color: #333;
    text-align: center;
    margin-bottom: 20px;
    font-weight: normal;
}

/* 输入框样式 */
.input-group-text {
    background-color: white;
    border-radius: 0;
}

.form-control {
    border-left: none;
    height: 45px;
    border-radius: 0;
}

    .form-control:focus {
        box-shadow: none;
        border-color: #ced4da;
    }

    .form-control::placeholder {
        color: #8F8F8F;
        opacity: 1;
        font-size: 12px;
    }

.input-icon {
    width: 15px;
    height: 15px;
    opacity: 0.6;
}

/* 登录按钮 */
.btn-login {
    width: 100%;
    height: 40px;
    background: linear-gradient(90deg, #FEAB44 0%, #E1330C 100%);
    border: none;
    color: white;
    font-size: 12px;
    font-weight: bold;
    margin-bottom: 15px;
    border-radius: 0;
}

    .btn-login:hover {
        background: linear-gradient(90deg, #E1330C 0%, #FEAB44 100%);
        color: #FFFFFF;
    }

/* 底部链接 */
.form-footer {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
}

.register-link, .forgot-link {
    color: #666;
    text-decoration: none;
}

    .register-link:hover, .forgot-link:hover {
        color: #FFFFFF;
    }