* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Microsoft YaHei', sans-serif;
    background: url('../image/login.png') no-repeat center center fixed;
    background-size: cover;
    height: 100vh;
    margin: 0;
    padding: 0;
}

.login-container {
    background: rgba(255, 255, 255, 0.9);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    width: 340px;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-40%, -40%);
}

.login-header {
    margin-bottom: 1.5rem;
}

.login-header h1 {
    color: #333;
    font-size: 1.8rem;
}

.login-form .form-group {
    margin-bottom: 1rem;
    text-align: left;
}

.login-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: #555;
}

.login-form input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}
.login-form button,.login-footer{
    width: 100%;
    background: #3498db;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s;
}
.login-form button:hover,.login-footer a:hover {
    background: #2980b9;
}
.login-footer,.layui-form-item{
    margin-top: 1rem;
}
.login-footer a {
    color:white;
    text-decoration: none;
}
.login-footer a:hover {
    text-decoration: underline;
}
.notice-container{
    background: rgba(255, 255, 255, 0.9);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1); 
    width: 340px; 
    position: absolute; 
    top: 50%; 
    left: calc(50% + 100px); 
    transform: translateY(-42%);
}