body {  
    /*display: flex;  
    justify-content: center;  
    align-items: center;  
    height: 100vh;  
    background: linear-gradient(135deg, #a8dadc, #ffafcc);  
    font-family: 'Arial', sans-serif;  */
    
/*     margin: 0;   */
    font-family: 'Microsoft YaHei', 'Arial', sans-serif;  
    display: flex;  
    justify-content: center;  
    align-items: center;  
    height: 100vh;  
    /*background: linear-gradient(135deg, #a8dadc, #ffafcc);  */
	background-image: url('../images/bg.png'); 
	background-size: cover‌;
	background-repeat: no-repeat; /* 防止背景图片平铺 */
    background-position: center; 
}  

.login-container {  
    background: white;  
    padding: 30px;  
    border-radius: 10px;  
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);  
    max-width: 400px;  
    width: 100%;  
}  

h1 {  
    text-align: center;  
    color: #333;  
}  

.input-group {  
    margin-bottom: 20px;  
}  

label {  
    display: block;  
    margin-bottom: 5px;  
    font-weight: bold;  
    color: #555;  
}  

input {  
    width: 100%;  
    padding: 12px !important;  
    border: 1px solid #ccc;  
    border-radius: 5px;  
    transition: border-color 0.3s;
    box-sizing: border-box; /* 确保padding不超出宽度 */
}  

input:focus {  
    border-color: #007bff;  
    outline: none;  
}  

button {  
    width: 100%;  
    padding: 12px !important;  
/*     background-color: #96dee0;   */
    background-color: #f3d892;  
    color: white;  
    border: none;  
    border-radius: 5px;  
    font-weight: bold;  
    cursor: pointer;  
    transition: background-color 0.3s;  
}  

button:hover {  
    background-color: #0056b3;  
}  

#message {  
    text-align: center;  
    margin-top: 15px;  
    color: red;  
}  

.footer {  
    text-align: center;  
    margin-top: 20px;  
}  

.footer a {  
    color: #6e747a;  
    text-decoration: none;  
}  

.footer a:hover {  
    text-decoration: underline;  
}

.dialog-content>.layui-form-item{
    padding: 15px;
    margin-bottom: 0;
    padding-bottom: 0;
}
.dialog-content .layui-form-mid{ padding-top: 0 !important; }
