body {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: auto auto;
    padding: 20px 0;
}

body::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: grid-move 20s linear infinite;
}

@keyframes grid-move {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(50px, 50px);
    }
}



.login-wrapper {
    max-width: 450px;
    width: 90%;
    padding: 0;
    margin: 0 auto;
    position: relative;
    box-sizing: border-box;
    z-index: 2;
    animation: slideInDown 0.6s ease-out;
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.login-wrapper > .layui-form {
    padding: 50px 40px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25), 0 0 100px rgba(102, 126, 234, 0.15);
    box-sizing: border-box;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.login-wrapper > .layui-form > h2 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    letter-spacing: 1px;
}

.login-wrapper > .layui-form > .layui-form-item {
    margin-bottom: 25px;
    position: relative;
}

.login-wrapper > .layui-form > .layui-form-item:last-child {
    margin-bottom: 0;
}

.login-wrapper > .layui-form > .layui-form-item > .layui-input {
    height: 50px;
    line-height: 1;
    border-radius: 12px !important;
    border: 2px solid #e8ecf4;
    transition: all 0.3s ease;
    font-size: 15px;
}

.login-wrapper > .layui-form > .layui-form-item > .layui-input:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
    transform: translateY(-2px);
}

.login-wrapper .layui-input-icon-group > .layui-input {
    padding-left: 50px;
}

.login-wrapper .layui-input-icon-group > .layui-icon {
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 22px;
    color: #667eea;
    position: absolute;
    left: 0;
    top: 0;
    text-align: center;
    transition: all 0.3s ease;
}

.login-wrapper .layui-input-icon-group:focus-within > .layui-icon {
    color: #764ba2;
    transform: scale(1.1);
}

.login-wrapper > .layui-form > .layui-form-item.login-captcha-group {
    padding-right: 135px;
}

.login-wrapper > .layui-form > .layui-form-item.login-captcha-group > .login-captcha {
    height: 46px;
    width: 120px;
    cursor: pointer;
    box-sizing: border-box;
    border: 1px solid #e6e6e6;
    border-radius: 2px !important;
    position: absolute;
    right: 0;
    top: 0;
}

.login-wrapper > .layui-form > .layui-form-item > .layui-form-checkbox {
    margin: 0 !important;
    padding-left: 25px;
}

.login-wrapper > .layui-form > .layui-form-item > .layui-form-checkbox > .layui-icon {
    width: 15px !important;
    height: 15px !important;
}

.login-wrapper > .layui-form .layui-btn-fluid {
    height: 52px;
    line-height: 52px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 12px !important;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.login-wrapper > .layui-form .layui-btn-fluid:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
}

.login-wrapper > .layui-form .layui-btn-fluid:active {
    transform: translateY(0);
}

.login-wrapper > .layui-form > .layui-form-item.login-oauth-group > a > .layui-icon {
    font-size: 26px;
}

.login-copyright {
    color: #eee;
    padding-bottom: 20px;
    text-align: center;
    position: relative;
    z-index: 1;
}

@media screen and (min-height: 550px) {
    .login-wrapper {
        margin: auto;
    }

    .login-copyright {
        position: absolute;
        bottom: 0;
        right: 0;
        left: 0;
    }
}

.layui-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
}

.layui-link {
    color: #667eea !important;
    transition: all 0.3s ease;
    font-weight: 500;
}

.layui-link:hover {
    color: #764ba2 !important;
    text-decoration: none;
}
.pull-right {
    float: right;
}
.create-context{
	margin:0 auto;
	width: 80%;
	min-height: 200px;
}
.article-title{
	width:100%;
	margin-bottom: 0px;
	background-color: #eee;
	display: flex;
}
.article-title .layui-form-item{
	margin-bottom: 0px;
}
.inline-block-container{
	display: inline-block;
}
.article-title-container{
	flex: 1;
}
.post-button button{
	z-index: 999;
	width:100%;
}

.layui-layer-content.layui-layer-padding{
    height:24px;
}

#email{
    display: inline-block;
    width:69%;
}