/* 管理员登录页面样式 */

/* 用户名和密码输入框添加细虚线边框 */
.form-group input[type="text"],
.form-group input[type="password"] {
    border: 1px dashed #888 !important;
    transition: all 0.3s ease;
}

.form-group input[type="text"]:focus,
.form-group input[type="password"]:focus {
    border: 1px solid #667eea !important;
    box-shadow: 0 0 5px rgba(102, 126, 234, 0.3);
    outline: none;
} 