* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background: url('../login/images/bg.jpg') center center no-repeat;
    background-size: cover;
    height: 100vh;
    font-family: -apple-system, BlinkMacSystemFont, 'PingFang SC', 'Microsoft YaHei', sans-serif;
}

.login-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background: rgba(0, 0, 0, 0.45);
}

.login-card {
    width: 420px;
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    padding: 0;
}

.login-header {
    background: #20222A;
    color: #fff;
    padding: 30px 30px 25px;
    text-align: center;
}

.login-header h1 {
    font-size: 22px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
}

.login-header h1 cite {
    color: #5fb878;
    font-style: normal;
}

.login-header p {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
}

.layui-form {
    padding: 30px 30px 25px;
}

.layui-form-item {
    margin-bottom: 20px;
}

.layui-form-label {
    width: 60px;
    padding: 9px 0;
    font-size: 14px;
    color: #333;
    background: none;
    border-bottom: 1px solid #ddd;
    border-radius: 0;
}

.layui-input-block {
    margin-left: 0;
}

.layui-input {
    border: none;
    border-bottom: 1px solid #ddd;
    border-radius: 0;
    padding: 9px 0;
    font-size: 14px;
    background: transparent;
    box-shadow: none;
}

.layui-input:focus {
    border-color: #0860DE;
    box-shadow: none;
}

.layui-btn-fluid {
    height: 44px;
    line-height: 44px;
    font-size: 16px;
    background: #0860DE;
    border: none;
    border-radius: 4px;
    margin-top: 10px;
}

.layui-btn-fluid:hover {
    background: #0654b8;
}

.login-footer {
    display: flex;
    justify-content: space-between;
    padding: 0 5px;
    margin-top: 5px;
}

.login-footer a {
    color: #0860DE;
    font-size: 13px;
    text-decoration: none;
}

.login-footer a:hover {
    text-decoration: underline;
}
