body {
    margin: 0;
    padding: 0;
}

.login {
    min-width: 1180px;
    width: 100vw;
    height: 100vh;
    background: linear-gradient(135deg, hsl(222.34deg 10.43% 12.27%), hsl(220deg 13.06% 9%));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.login::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(33, 158, 188, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(99, 102, 241, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 60% 80%, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
}

.login-form-box {
    display: flex;
    align-items: center;
    gap: 60px;
    z-index: 10;
}

.logo {
    position: fixed;
    top: 10px;
    left: 40px;
}

.login-left .login-left-img{
    width: 500px;
    height: 500px;
    position: relative;
}

.login-left .login-left-img img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.login-right {
    width: 420px;
    background-color: hsl(222.34deg 10.43% 12.27%);
    border-radius: 16px;
    border: 1px solid hsl(240 3.7% 22%);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    overflow: hidden;
}

.login-title {
    font-size: 24px;
    font-weight: 600;
    margin-top: 40px;
    margin-bottom: 40px;
    color: hsl(0 0% 95%);
    text-align: center;
}

.login-form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 40px 40px;
}

.form-box-item {
    width: 100%;
    display: flex;
    align-items: center;
    height: 48px;
    background-color: hsl(0deg 0% 100% / 5%);
    border: 1px solid hsl(240 3.7% 22%);
    border-radius: 8px;
    margin-top: 16px;
    transition: all 0.3s ease;
}

.form-box-item:focus-within {
    border-color: hsl(212 100% 45%);
    box-shadow: 0 0 0 3px rgba(33, 158, 188, 0.1);
}

.form-box-checked {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 16px;
    height: 40px;
}

.submit-btn {
    width: 100%;
    height: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: hsl(0 0% 98%);
    background: linear-gradient(135deg, hsl(212 100% 45%), hsl(212, 100%, 55%));
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(33, 158, 188, 0.4);
}

.submit-btn:active {
    transform: translateY(0);
}

.icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid hsl(240 3.7% 22%);
}

.icon img {
    width: 20px;
    height: 20px;
    opacity: 0.7;
}

.form-box-item input {
    flex: 1;
    height: 100%;
    background: transparent;
    border: none;
    outline: none;
    color: hsl(0 0% 95%);
    font-size: 14px;
    padding-left: 16px;
}

.form-box-item input::placeholder {
    color: hsl(218deg 11% 65%);
}

footer {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 12px;
    color: hsl(240 5% 64.9%);
    font-weight: 400;
    z-index: 10;
}

.layui-form-checkbox {
    margin: 0;
}

.layui-form-checkbox span {
    color: hsl(240 5% 64.9%);
    font-size: 13px;
}

.layui-form-checked span {
    color: hsl(212 100% 45%) !important;
}

.layui-form-checked[lay-skin="primary"] i {
    border-color: hsl(212 100% 45%) !important;
    background-color: hsl(212 100% 45%) !important;
}